summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-01-25 18:04:11 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-01-25 18:04:11 +0000
commitbae2cc6fda8827396cadd4e4c64d1c4c1145cb44 (patch)
tree3e959cad0a053f1adad663e7c02bc7a239f383d8 /TAO/orbsvcs/tests/Security/Callback/server_i.cpp
parentf8976a1649fc57ae453644f1f4498824cd2eb65b (diff)
downloadATCD-bae2cc6fda8827396cadd4e4c64d1c4c1145cb44.tar.gz
ChangeLogTag: Thu Jan 25 17:39:59 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/tests/Security/Callback/server_i.cpp')
-rw-r--r--TAO/orbsvcs/tests/Security/Callback/server_i.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/Security/Callback/server_i.cpp b/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
index 8b465287492..b16ab2f3f1f 100644
--- a/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
+++ b/TAO/orbsvcs/tests/Security/Callback/server_i.cpp
@@ -15,24 +15,22 @@ server_i::~server_i (void)
}
void
-server_i::set_client (client_ptr c
- ACE_ENV_ARG_DECL_NOT_USED)
+server_i::set_client (client_ptr c)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->client_ = client::_duplicate (c);
}
void
-server_i::test_request (const char *msg
- ACE_ENV_ARG_DECL)
+server_i::test_request (const char *msg)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->client_->test_reply (msg ACE_ENV_ARG_PARAMETER);
+ this->client_->test_reply (msg);
}
void
server_i::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (0);
}