summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-21 15:47:19 +0000
committerjoeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-21 15:47:19 +0000
commited3d22eae8aef8107f8a44b019b74f7c7d78e181 (patch)
tree50d8df5954e66bc5398b952cdf6edf609a9b1a56
parentc89a93ea2509e23976162c55406a4cbb1f9241fd (diff)
downloadATCD-ed3d22eae8aef8107f8a44b019b74f7c7d78e181.tar.gz
Wed Mar 21 09:26:38 2001 Joe Hoffert <joeh@cs.wustl.edu>
-rw-r--r--PACE/ChangeLog6
-rw-r--r--PACE/pace/posix/socket.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index cb2e3800161..da979c42484 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,3 +1,9 @@
+Wed Mar 21 09:26:38 2001 Joe Hoffert <joeh@cs.wustl.edu>
+
+ * pace/posix/socket.h:
+ Added typedef of pace_socklen_t to int for Solaris 5.6. Thanks
+ to Lu Yunhai <luyunhai@huawei.com> for this solution.
+
Mon Mar 19 16:56:47 2001 Luther Baker <luther@cs.wustl.edu>
* pace/win32/unistd.c:
diff --git a/PACE/pace/posix/socket.h b/PACE/pace/posix/socket.h
index de0f8db335a..61e96e7f341 100644
--- a/PACE/pace/posix/socket.h
+++ b/PACE/pace/posix/socket.h
@@ -35,7 +35,7 @@ extern "C" {
#ifndef PACE_SOCKLEN_T
#define PACE_SOCKLEN_T
-# if PACE_LYNXOS == 0x300 || PACE_LYNXOS == 0x310 || PACE_SUNOS == 551
+# if PACE_LYNXOS == 0x300 || PACE_LYNXOS == 0x310 || PACE_SUNOS == 551 || PACE_SUNOS == 560
typedef int pace_socklen_t;
# else
typedef socklen_t pace_socklen_t;