summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-97a18
-rw-r--r--tests/Conn_Test.cpp2
2 files changed, 12 insertions, 8 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a
index 3a6822a0b3b..c294e937cc0 100644
--- a/ChangeLog-97a
+++ b/ChangeLog-97a
@@ -1,3 +1,14 @@
+Tue May 6 07:39:25 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * examples/IPC_SAP/SOCK_SAP/CPP-inserver-poll.cpp (main):
+ Changed ACE::INVALID_HANDLE to ACE_INVALID_HANDLE.
+ Thanks to Dani Flexer <danif@alice.actcom.co.il> for
+ reporting this.
+
+ * tests/Conn_Test.cpp (compare_i): Changed the comparison from
+ a1 == a2 to a1 != a2 since this appears to be what is needed.
+ We need to improve the comments here!
+
Tue May 06 07:43:29 1997 David L. Levine <levine@cs.wustl.edu>
* ace/Containers.cpp (dequeue_head): fixed typos in variable names.
@@ -7,13 +18,6 @@ Tue May 06 07:43:29 1997 David L. Levine <levine@cs.wustl.edu>
that this subproject will build on platforms non-TLI platforms such
as Linux.
-Tue May 6 07:39:25 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-
- * examples/IPC_SAP/SOCK_SAP/CPP-inserver-poll.cpp (main):
- Changed ACE::INVALID_HANDLE to ACE_INVALID_HANDLE.
- Thanks to Dani Flexer <danif@alice.actcom.co.il> for
- reporting this.
-
Tue May 6 00:00:54 1997 Chris Cleeland <cleeland@cs.wustl.edu>
* ace/Message_Block.cpp: Added template specialization for
diff --git a/tests/Conn_Test.cpp b/tests/Conn_Test.cpp
index 3081db9d573..698142338cf 100644
--- a/tests/Conn_Test.cpp
+++ b/tests/Conn_Test.cpp
@@ -220,7 +220,7 @@ int
ACE_Hash_Addr<ACE_INET_Addr, Svc_Handler>::compare_i (const ACE_INET_Addr &a1,
const ACE_INET_Addr &a2) const
{
- return a1 == a2;
+ return a1 != a2;
}
// ****************************************