summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-08-27 22:58:35 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-08-27 22:58:35 +0000
commitf05aab153dd58f80b67c6087eac1012529d0b58b (patch)
treef471fa01d87fa481316d098e4465c61f13a873cc
parentf40a4c227d4f2078abf16434abc4dddf2263fd00 (diff)
downloadATCD-f05aab153dd58f80b67c6087eac1012529d0b58b.tar.gz
ChangeLogTag:Tue Aug 27 15:56:05 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog24
-rw-r--r--TAO/orbsvcs/tests/Security/Callback/server_i.cpp2
2 files changed, 17 insertions, 9 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 9c8ea242abe..dba79fa12b7 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Aug 27 15:56:05 2002 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/tests/Security/Callback/server_i.cpp (test_request):
+
+ Removed default value in emulated exception parameter. The
+ implementation should not use default arguments. Fixes a
+ warning.
+
Tue Aug 27 16:22:27 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/util/utl_global.cpp:
@@ -18,21 +26,21 @@ Tue Aug 27 15:41:57 2002 Balachandran Natarajan <bala@isis-server.vuse.vanderb
Tue Aug 27 15:48:17 2002 Irfan Pyarali <irfan@oomworks.com>
- * tao\PortableServer\PortableServer_PolicyFactory.cpp: New class
+ * tao/PortableServer/PortableServer_PolicyFactory.cpp: New class
for creating POA Policies.
- * tao\PortableServer\PortableServer_ORBInitializer.cpp: New
+ * tao/PortableServer/PortableServer_ORBInitializer.cpp: New
initialization class that adds TAO_PortableServer_PolicyFactory
as a factory for POA Policies.
- * tao\PortableServer\PortableServer.cpp (init): Registered
+ * tao/PortableServer/PortableServer.cpp (init): Registered
TAO_PortableServer_ORBInitializer with the PortableInterceptor.
- * tao\PortableServer\POA_Policies.cpp (create): Added create
+ * tao/PortableServer/POA_Policies.cpp (create): Added create
methods to the policy classes so that they can be created from
Any values.
- * tests\POA\Policies: This program tests the construction of POA
+ * tests/POA/Policies: This program tests the construction of POA
policies, both through the generic ORB::create_policy interface
and the PortableServer specific interfaces.
@@ -54,7 +62,7 @@ Tue Aug 27 15:48:17 2002 Irfan Pyarali <irfan@oomworks.com>
- tests/POA/README
- $ACE_ROOT/bin/auto_run_tests.lst
- * tao\PortableServer: Added new files
+ * tao/PortableServer: Added new files
PortableServer_PolicyFactory.{cpp,h} and
PortableServer_ORBInitializer.{cpp,h} to:
@@ -65,7 +73,7 @@ Tue Aug 27 15:48:17 2002 Irfan Pyarali <irfan@oomworks.com>
Tue Aug 27 12:42:58 2002 Irfan Pyarali <irfan@oomworks.com>
- * tests\POA\Default_Servant\Makefile (BIN_UNCHECKED): Changed
+ * tests/POA/Default_Servant/Makefile (BIN_UNCHECKED): Changed
Makefile such that the test program is not compiled with minimum
CORBA. Thanks to Ossama for pointing this out.
@@ -92,7 +100,7 @@ Tue Aug 27 12:40:12 2002 Balachandran Natarajan <bala@isis-server.vuse.vanderb
* tao/ORB.cpp (shutdown): Added a comment as to why we cannot lock
exceptions within this method.
-
+
Tue Aug 27 10:22:50 2002 Balachandran Natarajan <bala@isis-server.vuse.vanderbilt.edu>
* tests/ORB_shutdown/server.cpp: Fixed a compile error in builds
diff --git a/TAO/orbsvcs/tests/Security/Callback/server_i.cpp b/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
index dbf2ffe849e..d2a8c676bc4 100644
--- a/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
+++ b/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
@@ -26,7 +26,7 @@ server_i::set_client (client_ptr c
void
server_i::test_request (const char *msg
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->client_->test_reply (msg ACE_ENV_ARG_PARAMETER);