summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-04-10 01:19:15 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-04-10 01:19:15 +0000
commit2e7b7b4b49d210a22ce1b8863c7e379015ad0d00 (patch)
tree13e7c59e70af3a2cb2850d7c95c5f00aa7788630 /TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
parentdfb83e47853891acb8fc367b2ec9886a09cc7d92 (diff)
downloadATCD-2e7b7b4b49d210a22ce1b8863c7e379015ad0d00.tar.gz
ChangeLogTag:Mon Apr 9 18:17:14 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
index 626886f9e94..3661e72841f 100644
--- a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
+++ b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_ORBInitializer.cpp
@@ -43,7 +43,7 @@ Client_ORBInitializer::post_init (
PortableInterceptor::ClientRequestInterceptor_var ci_interceptor =
ci;
- info->add_client_request_interceptor (ci_interceptor,
+ info->add_client_request_interceptor (ci_interceptor.in (),
ACE_TRY_ENV);
ACE_CHECK;
@@ -58,7 +58,7 @@ Client_ORBInitializer::post_init (
ci_interceptor = ci;
- info->add_client_request_interceptor (ci_interceptor,
+ info->add_client_request_interceptor (ci_interceptor.in (),
ACE_TRY_ENV);
ACE_CHECK;
@@ -73,7 +73,7 @@ Client_ORBInitializer::post_init (
ci_interceptor = ci;
- info->add_client_request_interceptor (ci_interceptor,
+ info->add_client_request_interceptor (ci_interceptor.in (),
ACE_TRY_ENV);
ACE_CHECK;
}