summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp
index 32d423916d3..c6b994c7f66 100644
--- a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp
+++ b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_ORBInitializer.cpp
@@ -43,7 +43,7 @@ Server_ORBInitializer::post_init (
PortableInterceptor::ServerRequestInterceptor_var si_interceptor =
si;
- info->add_server_request_interceptor (si_interceptor,
+ info->add_server_request_interceptor (si_interceptor.in (),
ACE_TRY_ENV);
ACE_CHECK;
@@ -58,7 +58,7 @@ Server_ORBInitializer::post_init (
si_interceptor = si;
- info->add_server_request_interceptor (si_interceptor,
+ info->add_server_request_interceptor (si_interceptor.in (),
ACE_TRY_ENV);
ACE_CHECK;
@@ -73,7 +73,7 @@ Server_ORBInitializer::post_init (
si_interceptor = si;
- info->add_server_request_interceptor (si_interceptor,
+ info->add_server_request_interceptor (si_interceptor.in (),
ACE_TRY_ENV);
ACE_CHECK;
}