summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-01-09 22:39:48 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-01-09 22:39:48 +0000
commitcb1c5522ab12ca9f00ba9e4b4a9295b8dc3967db (patch)
tree206072a2e7a0610b1c68d0a553eabb93e22971d6
parentd5d68a15bf274b0256886c249539ef8348b088c6 (diff)
downloadATCD-cb1c5522ab12ca9f00ba9e4b4a9295b8dc3967db.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/server_test.cpp11
2 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index b2eebb3d781..a6d96ea2609 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,5 +1,9 @@
Fri Jan 9 11:35:53 1998 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu>
+ * examples/Service_Configurator/IPC-tests/server/server_test.cpp:
+ Fixed a syntax error. Thanks to John Mulhern
+ <9107@MN3.LAWSON.lawson.com> for reporting this.
+
* ace/Log_Msg.cpp (log): Changed abort_prog == 0 to abort_prog so
that STDERR would be printed correctly.
diff --git a/examples/Service_Configurator/IPC-tests/server/server_test.cpp b/examples/Service_Configurator/IPC-tests/server/server_test.cpp
index 04440f729a7..a1dd1e36ce4 100644
--- a/examples/Service_Configurator/IPC-tests/server/server_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/server_test.cpp
@@ -7,8 +7,11 @@
int
main (int argc, char *argv[])
{
- if (ACE_Service_Test::open (argc, argv) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "server_test.open"), -1);
+ if (ACE_Service_Config::open (argc, argv) == -1)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "%p\n",
+ "ACE_Service_Config::open"),
+ -1);
// Create an adapter to end the event loop.
ACE_Sig_Adapter sa ((ACE_Sig_Handler_Ex) ACE_Reactor::end_event_loop);
@@ -20,7 +23,9 @@ main (int argc, char *argv[])
// Register ourselves to receive signals so we can shut down
// gracefully.
if (ACE_Reactor::instance ()->register_handler (sig_set, &sa) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n"), -1);
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "%p\n"),
+ -1);
// Run forever, performing the configured services until we are shut
// down by a SIGINT/SIGQUIT signal.