diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-04 05:09:19 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-04 05:09:19 +0000 |
commit | 95433e3dbe5d6d6fc4ba640a14d290b609b90a73 (patch) | |
tree | a3d21f8d1134ebe9af2be9a1acbe4c28ab33fb00 /apps | |
parent | 86816512abb26aac53f23f2a5c2372f235505d0c (diff) | |
download | ATCD-95433e3dbe5d6d6fc4ba640a14d290b609b90a73.tar.gz |
*** empty log message ***
Diffstat (limited to 'apps')
-rw-r--r-- | apps/JAWS/ChangeLog | 6 | ||||
-rw-r--r-- | apps/JAWS/server/main.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/apps/JAWS/ChangeLog b/apps/JAWS/ChangeLog index 1c2f2741e91..f74462b14d2 100644 --- a/apps/JAWS/ChangeLog +++ b/apps/JAWS/ChangeLog @@ -1,3 +1,9 @@ +Mon Aug 4 00:07:24 1997 Nanbor Wang <nw1@cumbia.cs.wustl.edu> + + * server/main.cpp (main): Service configurator now doesn't return + -1 when errors occur. Therefore, we check for not success + instread of fail when opening the service contifurator. + Mon Jul 28 04:54:01 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> * server/Parse_Headers.cpp (place): Reformatted the same diff --git a/apps/JAWS/server/main.cpp b/apps/JAWS/server/main.cpp index 9e38ccbeea9..38cc4fa27d4 100644 --- a/apps/JAWS/server/main.cpp +++ b/apps/JAWS/server/main.cpp @@ -29,7 +29,7 @@ main (int argc, char *argv[]) ACE_OS::signal (SIGCHLD, SIG_IGN); ACE_UNUSED_ARG (sa); - if (daemon.open (argc, argv) == -1) + if (daemon.open (argc, argv) != 0) ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "open"), 1); // Run forever, performing the configured services until we receive |