summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>2001-11-13 18:06:44 +0000
committerChris Cleeland <chris.cleeland@gmail.com>2001-11-13 18:06:44 +0000
commitc1c754562ca744f393f86a04b69a777015dbf552 (patch)
tree59a6bf60accfb9812691a7caf781d7f878f1f854
parentdffa79f51c1c06096d4726834c4df2dcc0d4ea7a (diff)
downloadATCD-c1c754562ca744f393f86a04b69a777015dbf552.tar.gz
ChangeLogTag:Tue Nov 13 11:46:11 2001 Chris Cleeland <cleeland_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--tests/Collection_Test.cpp6
4 files changed, 23 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b6643df1eb2..e6587a8f98e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Nov 13 11:46:11 2001 Chris Cleeland <cleeland_c@ociweb.com>
+
+ * tests/Collection_Test.cpp (iterate_const): Fixed ACE_DEBUG print
+ statements that were accessing the element of the unbounded set as
+ an int rather than an UglyThing. Thanks to Ossama for pointing
+ this out.
+
Mon Nov 12 11:41:35 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Stream.cpp (send, recv):
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index b6643df1eb2..e6587a8f98e 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue Nov 13 11:46:11 2001 Chris Cleeland <cleeland_c@ociweb.com>
+
+ * tests/Collection_Test.cpp (iterate_const): Fixed ACE_DEBUG print
+ statements that were accessing the element of the unbounded set as
+ an int rather than an UglyThing. Thanks to Ossama for pointing
+ this out.
+
Mon Nov 12 11:41:35 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Stream.cpp (send, recv):
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index b6643df1eb2..e6587a8f98e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Tue Nov 13 11:46:11 2001 Chris Cleeland <cleeland_c@ociweb.com>
+
+ * tests/Collection_Test.cpp (iterate_const): Fixed ACE_DEBUG print
+ statements that were accessing the element of the unbounded set as
+ an int rather than an UglyThing. Thanks to Ossama for pointing
+ this out.
+
Mon Nov 12 11:41:35 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Stream.cpp (send, recv):
diff --git a/tests/Collection_Test.cpp b/tests/Collection_Test.cpp
index 9fe9f030124..5bc7c8cacc4 100644
--- a/tests/Collection_Test.cpp
+++ b/tests/Collection_Test.cpp
@@ -66,11 +66,9 @@ void iterate_const(const UNBOUNDED_SET& set)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
data->alloc_, data->dfunc_));
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%d\n"),
- (*data)));
DATA data_second = *iterator;
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%d\n"),
- (data_second)));
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
+ data_second.alloc_, data_second.dfunc_));
iterator.advance ();
}