summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-04 10:21:42 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-04 10:21:42 +0000
commit01112923295d0bca16f4741ae367e30ba2d97db5 (patch)
treecf2b1344abb034236e095d2e6f5f95aa2987a231
parentd44af03e4ea184134a2d3f58fda4078c013003cf (diff)
downloadATCD-01112923295d0bca16f4741ae367e30ba2d97db5.tar.gz
ChangeLogTag:Mon Nov 4 09:28:34 UTC 2002 Don Hinton <dhinton@ieee.org>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/SOCK_Dgram.cpp2
3 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f45d5f8910..56da4cba2a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Nov 4 09:28:34 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * ace/SOCK_Dgram.cpp (recv): Corrected method signature in .cpp to
+ match the one in the .h. The .h version specified iovec*, but
+ the .cpp had iovec[] which confused doxygen. This fixes bug [1353].
+
Sun Nov 3 19:41:30 UTC 2002 Don Hinton <dhinton@ieee.org>
* tests/Multicast_Test.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 0f45d5f8910..56da4cba2a2 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Mon Nov 4 09:28:34 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * ace/SOCK_Dgram.cpp (recv): Corrected method signature in .cpp to
+ match the one in the .h. The .h version specified iovec*, but
+ the .cpp had iovec[] which confused doxygen. This fixes bug [1353].
+
Sun Nov 3 19:41:30 UTC 2002 Don Hinton <dhinton@ieee.org>
* tests/Multicast_Test.cpp:
diff --git a/ace/SOCK_Dgram.cpp b/ace/SOCK_Dgram.cpp
index 9fe44b094a3..d9814ed508b 100644
--- a/ace/SOCK_Dgram.cpp
+++ b/ace/SOCK_Dgram.cpp
@@ -27,7 +27,7 @@ ACE_SOCK_Dgram::dump (void) const
// returns the number of bytes read.
ssize_t
-ACE_SOCK_Dgram::recv (iovec io_vec[],
+ACE_SOCK_Dgram::recv (iovec *io_vec,
ACE_Addr &addr,
int flags,
const ACE_Time_Value *timeout) const