diff options
author | pgontla <pgontla@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-05-15 02:41:11 +0000 |
---|---|---|
committer | pgontla <pgontla@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-05-15 02:41:11 +0000 |
commit | 126b0a1b2db64a45583d42b740038be3eb31864d (patch) | |
tree | 93bcd00c34b86f0b25d66cbf9c73664bdf893798 | |
parent | 765b647c235008a00cb4d823a5da05714397d77f (diff) | |
download | ATCD-126b0a1b2db64a45583d42b740038be3eb31864d.tar.gz |
ChangeLogTag: Tue May 14 19:40:11 2002 Priyanka Gontla <pgontla@ece.uci.edu>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 6 | ||||
-rw-r--r-- | tests/Proactor_Test.cpp | 9 |
4 files changed, 24 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 7e7dfb5c4b3..5cf128f4711 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue May 14 19:40:11 2002 Priyanka Gontla <pgontla@ece.uci.edu> + + * tests/Proactor_Test.cpp (initiate_write_stream): + Applied the Patch Johnny Willemsen sent to fix the test for the + unicode builds. + Tue May 14 19:14:11 2002 Priyanka Gontla <pgontla@ece.uci.edu> * tests/TP_Reactor_Test.cpp (Connector): diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 7e7dfb5c4b3..5cf128f4711 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Tue May 14 19:40:11 2002 Priyanka Gontla <pgontla@ece.uci.edu> + + * tests/Proactor_Test.cpp (initiate_write_stream): + Applied the Patch Johnny Willemsen sent to fix the test for the + unicode builds. + Tue May 14 19:14:11 2002 Priyanka Gontla <pgontla@ece.uci.edu> * tests/TP_Reactor_Test.cpp (Connector): diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 7e7dfb5c4b3..5cf128f4711 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Tue May 14 19:40:11 2002 Priyanka Gontla <pgontla@ece.uci.edu> + + * tests/Proactor_Test.cpp (initiate_write_stream): + Applied the Patch Johnny Willemsen sent to fix the test for the + unicode builds. + Tue May 14 19:14:11 2002 Priyanka Gontla <pgontla@ece.uci.edu> * tests/TP_Reactor_Test.cpp (Connector): diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp index e8ec1e49567..1a3a2c5cea4 100644 --- a/tests/Proactor_Test.cpp +++ b/tests/Proactor_Test.cpp @@ -1166,15 +1166,18 @@ Sender::initiate_write_stream (void) // No need to allocate +1 for proper printing - the memory includes it already ACE_NEW_RETURN (mb1, - ACE_Message_Block (complete_message, complete_message_length), + ACE_Message_Block ((char *)complete_message, + complete_message_length), -1); ACE_NEW_RETURN (mb2, - ACE_Message_Block (complete_message, complete_message_length), + ACE_Message_Block ((char *)complete_message, + complete_message_length), -1); ACE_NEW_RETURN (mb3, - ACE_Message_Block (complete_message, complete_message_length), + ACE_Message_Block ((char *)complete_message, + complete_message_length), -1); mb1->wr_ptr (complete_message_length); |