summaryrefslogtreecommitdiff
path: root/apps/drwho
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-23 12:07:25 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-23 12:07:25 +0000
commit83c1813e06128eaa6d8cd87383f015739b9d40a0 (patch)
tree1c9016e6ab17795f6993d5e6dcc8dfff3fadbb92 /apps/drwho
parent460409917aab1f5ee5fe9edaf196b1d240aaeb13 (diff)
downloadATCD-83c1813e06128eaa6d8cd87383f015739b9d40a0.tar.gz
ChangeLogTag: Tue May 23 07:06:29 2000 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'apps/drwho')
-rw-r--r--apps/drwho/CM_Server.cpp2
-rw-r--r--apps/drwho/ChangeLog7
2 files changed, 8 insertions, 1 deletions
diff --git a/apps/drwho/CM_Server.cpp b/apps/drwho/CM_Server.cpp
index 041b111a75a..26e68f8d5d7 100644
--- a/apps/drwho/CM_Server.cpp
+++ b/apps/drwho/CM_Server.cpp
@@ -43,7 +43,7 @@ CM_Server::receive (int)
{
// It would be nice to use ACE_SOCKET_LEN here, but that's only
// defined in ace/OS.i.
- size_t sin_len = sizeof this->sin_;
+ u_int sin_len = sizeof this->sin_;
if (Options::get_opt (Options::DEBUG) != 0)
ACE_DEBUG ((LM_DEBUG, "waiting for client to send...\n"));
diff --git a/apps/drwho/ChangeLog b/apps/drwho/ChangeLog
index 9600a1f64e2..063e954aaa5 100644
--- a/apps/drwho/ChangeLog
+++ b/apps/drwho/ChangeLog
@@ -1,3 +1,10 @@
+Tue May 23 07:06:29 2000 David L. Levine <levine@cs.wustl.edu>
+
+ * CM_Server.cpp (receive): changed type of local sin_len
+ from size_t to u_int, so that it will compile with Compaq
+ cxx on Tru 64. See
+ Mon May 22 21:10:24 2000 David L. Levine <levine@cs.wustl.edu>
+
Mon May 22 21:10:24 2000 David L. Levine <levine@cs.wustl.edu>
* CM_Server.cpp (receive): changed type of local sin_len