summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-09-01 18:13:44 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-09-01 18:13:44 +0000
commit27db01da2b1f33e189f220e56acd99587b1d3fe1 (patch)
tree4a8049a233e7d585d05dcb81eb52a59a73f10431
parent72153f80aca786beb32d3d1546f7dd19b4d56aa7 (diff)
downloadATCD-27db01da2b1f33e189f220e56acd99587b1d3fe1.tar.gz
ChangeLogTag:Sun Sep 1 11:10:51 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index c9740f6f4f5..4c37abba7ab 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Sun Sep 1 11:10:51 2002 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp
+ (receive_request_service_contexts):
+
+ Use the standard CORBA::OMGVMCID constant instead of the
+ obsolete TAO_OMG_VMCID constant.
+
Sat Aug 31 23:58:02 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
* tao/Makefile.dirs: Add include of rules.tao.GNU, in order to
diff --git a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp b/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp
index c1239387453..434b30b4918 100644
--- a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp
+++ b/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp
@@ -94,7 +94,7 @@ TAO_LB_ServerRequestInterceptor::receive_request_service_contexts (
// Make sure we get a CORBA::BAD_PARAM for the right
// reason.
- if (ex.minor () != (TAO_OMG_VMCID | 26))
+ if (ex.minor () != (CORBA::OMGVMCID | 26))
ACE_RE_THROW;
}
ACE_ENDTRY;