summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-08 05:24:33 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-08 05:24:33 +0000
commit906c4de65837ed804c141cbba5c362dbbd01bf62 (patch)
tree9df1470c629e1592e889a7895fb451a05499f4b0
parent697cb0496ee8cdfdd179fb263871015c2182c9d7 (diff)
downloadATCD-906c4de65837ed804c141cbba5c362dbbd01bf62.tar.gz
ChangeLogTag:Fri Aug 7 23:18:53 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--ChangeLog-98b3
-rw-r--r--tests/MT_SOCK_Test.cpp2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index a36790a8480..ba163067ead 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -4,6 +4,9 @@ Fri Aug 7 23:18:53 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Updated the new ACE_CC_NAME macros (and friends) so they work
with egcs (and hopefully g++).
+ * tests/MT_SOCK_Test.cpp:
+ Removed double comma in function call.
+
Fri Aug 7 21:39:26 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/INET_Addr.cpp:
diff --git a/tests/MT_SOCK_Test.cpp b/tests/MT_SOCK_Test.cpp
index 870c4df390c..59da1beafce 100644
--- a/tests/MT_SOCK_Test.cpp
+++ b/tests/MT_SOCK_Test.cpp
@@ -165,7 +165,7 @@ server (void *arg)
// Create a new ACE_SOCK_Stream endpoint (note automatic restart
// if errno == EINTR).
- while ((result = peer_acceptor->accept (new_stream, ,
+ while ((result = peer_acceptor->accept (new_stream,
&cli_addr)) != -1)
{
char *t = ACE_ALPHABET;