summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp')
-rw-r--r--TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp b/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp
index bcbd1a3f592..3a624fa0835 100644
--- a/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp
+++ b/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp
@@ -35,7 +35,7 @@ Logging_Svc_Shutdown::operator() (int which_signal)
which_signal));
ACE_DECLARE_NEW_CORBA_ENV;
- (void) this->svc_.shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
+ (void) this->svc_.shutdown ();
}
// Driver function for the Event_Logging_Service
@@ -56,14 +56,12 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
int rc;
rc = service.init (argc, argv ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
if (rc == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"Failed to initialize the Telecom Log Service.\n"),
1);
- rc = service.run (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ rc = service.run ();
if (rc == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"Failed to start the Telecom Log Service.\n"),