summaryrefslogtreecommitdiff
path: root/TAO/tests/Exposed_Policies/client.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-12-08 21:59:30 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-12-08 21:59:30 +0000
commit63165b00e2d667e39e15cf084128d94a563d484e (patch)
tree6939cf1ed0a80ce8a3224d33f3d23c0e1b9a517f /TAO/tests/Exposed_Policies/client.cpp
parent6579bccb3a3f22f882ef908ad5f7e1a65b00b133 (diff)
downloadATCD-63165b00e2d667e39e15cf084128d94a563d484e.tar.gz
Merged corba-env-clean branch.
Diffstat (limited to 'TAO/tests/Exposed_Policies/client.cpp')
-rw-r--r--TAO/tests/Exposed_Policies/client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Exposed_Policies/client.cpp b/TAO/tests/Exposed_Policies/client.cpp
index 30e1205c761..4859498b674 100644
--- a/TAO/tests/Exposed_Policies/client.cpp
+++ b/TAO/tests/Exposed_Policies/client.cpp
@@ -14,16 +14,16 @@ ACE_RCSID(tao, client, "$Id$")
int
main (int argc, char *argv[])
{
- ACE_DECLARE_NEW_CORBA_ENV;
+ TAO_ENV_DECLARE_NEW_ENV;
ACE_TRY
{
Policy_Verifier policy_verifier;
- policy_verifier.init (argc, argv, ACE_TRY_ENV);
+ policy_verifier.init (argc, argv TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
- policy_verifier.run (ACE_TRY_ENV);
+ policy_verifier.run (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY