summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-03-02 19:26:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-03-02 19:26:23 +0000
commit9bf3ebace08f9fc76d9ef0f990a4a0f98871336e (patch)
treefc5931c5c72ab5ef9a9ac2612a89dae333c14012
parent4ec7debed79b57f1c83c2be066870dd6a3775697 (diff)
downloadATCD-9bf3ebace08f9fc76d9ef0f990a4a0f98871336e.tar.gz
ChangeLogTag:Thu Mar 2 13:23:39 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--THANKS1
-rw-r--r--ace/TLI.cpp2
-rw-r--r--ace/TLI_Connector.cpp6
-rw-r--r--ace/TLI_Stream.cpp2
7 files changed, 25 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3aa3a9e9f3c..f450a37885e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Mar 2 13:23:39 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/TLI.cpp, TLI_Connector.cpp, TLI_Stream.cpp: Removed comments
+ regarding the quality of SunOS 4... Thanks to Malcolm Spence
+ <spence_m@ociweb.com> for reporting this!
+
Wed Mar 1 22:39:04 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/Log_Record.cpp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 3aa3a9e9f3c..f450a37885e 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Thu Mar 2 13:23:39 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/TLI.cpp, TLI_Connector.cpp, TLI_Stream.cpp: Removed comments
+ regarding the quality of SunOS 4... Thanks to Malcolm Spence
+ <spence_m@ociweb.com> for reporting this!
+
Wed Mar 1 22:39:04 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/Log_Record.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 3aa3a9e9f3c..f450a37885e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Thu Mar 2 13:23:39 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/TLI.cpp, TLI_Connector.cpp, TLI_Stream.cpp: Removed comments
+ regarding the quality of SunOS 4... Thanks to Malcolm Spence
+ <spence_m@ociweb.com> for reporting this!
+
Wed Mar 1 22:39:04 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/Log_Record.cpp:
diff --git a/THANKS b/THANKS
index 6e71c71592b..7cacbfbe011 100644
--- a/THANKS
+++ b/THANKS
@@ -912,6 +912,7 @@ Bruce McIntosh <Bruce.McIntosh@australia.boeing.com>
Natarajan Kalpathy <Natarajan_Kalpathy@mw.3com.com>
David O'Farrell <eeidofl@eei.ericsson.se>
Bob Bouterse <BBouterse@escient.com>
+Malcolm Spence <spence_m@ociweb.com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson. Paul devised the recursive Makefile scheme that
diff --git a/ace/TLI.cpp b/ace/TLI.cpp
index 39b17f2a58d..ee3e5d6cb41 100644
--- a/ace/TLI.cpp
+++ b/ace/TLI.cpp
@@ -89,7 +89,7 @@ ACE_TLI::get_local_addr (ACE_Addr &sa) const
return -1;
else
return 0;
-#else /* SunOS4 sucks... */
+#else /* SunOS4 */
ACE_UNUSED_ARG (sa);
ACE_NOTSUP_RETURN (-1);
#endif /* ACE_HAS_SVR4_TLI */
diff --git a/ace/TLI_Connector.cpp b/ace/TLI_Connector.cpp
index 12323b0fe1d..9960e59f1f7 100644
--- a/ace/TLI_Connector.cpp
+++ b/ace/TLI_Connector.cpp
@@ -211,8 +211,10 @@ ACE_TLI_Connector::complete (ACE_TLI_Stream &new_stream,
name.maxlen = remote_sap->get_size ();
name.buf = (char *) remote_sap->get_addr ();
- if (ACE_OS::ioctl (new_stream.get_handle (), TI_GETPEERNAME, &name) == -1)
-#else /* SunOS4 sucks... */
+ if (ACE_OS::ioctl (new_stream.get_handle (),
+ TI_GETPEERNAME,
+ &name) == -1)
+#else /* SunOS4 */
if (0)
#endif /* ACE_HAS_SVR4_TLI */
{
diff --git a/ace/TLI_Stream.cpp b/ace/TLI_Stream.cpp
index 629dd295353..74fa37f82ce 100644
--- a/ace/TLI_Stream.cpp
+++ b/ace/TLI_Stream.cpp
@@ -41,7 +41,7 @@ ACE_TLI_Stream::get_remote_addr (ACE_Addr &sa) const
return -1;
else
return 0;
-#else /* SunOS4 sucks... */
+#else /* SunOS4 */
ACE_UNUSED_ARG (sa);
ACE_NOTSUP_RETURN (-1);
#endif /* ACE_HAS_SVR4_TLI */