summaryrefslogtreecommitdiff
path: root/TAO/tao/Asynch_Queued_Message.cpp
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-04 05:21:39 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-04 05:21:39 +0000
commit04f13977330f4b8f3420a6c3e80d8a0b75e50c58 (patch)
treeb9ad21287a6b112d22cd757718af5c60419de77b /TAO/tao/Asynch_Queued_Message.cpp
parent48fea8412a22e7a3ce12afeea8d9363027a7428d (diff)
downloadATCD-04f13977330f4b8f3420a6c3e80d8a0b75e50c58.tar.gz
ChangeLogTag:Tue Nov 4 04:55:40 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'TAO/tao/Asynch_Queued_Message.cpp')
-rw-r--r--TAO/tao/Asynch_Queued_Message.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/Asynch_Queued_Message.cpp b/TAO/tao/Asynch_Queued_Message.cpp
index aa706565e59..70a03a2f040 100644
--- a/TAO/tao/Asynch_Queued_Message.cpp
+++ b/TAO/tao/Asynch_Queued_Message.cpp
@@ -2,7 +2,7 @@
#include "debug.h"
#include "ace/OS_Memory.h"
-#include "ace/OS_String.h"
+#include "ace/OS_NS_string.h"
#include "ace/os_include/sys/os_uio.h"
#include "ace/Log_Msg.h"
#include "ace/Message_Block.h"
@@ -27,9 +27,9 @@ TAO_Asynch_Queued_Message::
i != 0;
i = i->cont ())
{
- ACE_OS_String::memcpy (this->buffer_ + copy_offset,
- i->rd_ptr (),
- i->length ());
+ ACE_OS::memcpy (this->buffer_ + copy_offset,
+ i->rd_ptr (),
+ i->length ());
copy_offset += i->length ();
}
}
@@ -112,9 +112,9 @@ TAO_Asynch_Queued_Message::clone (ACE_Allocator *alloc)
char[sz],
0);
- ACE_OS_String::memcpy (buf,
- this->buffer_ + this->offset_,
- sz);
+ ACE_OS::memcpy (buf,
+ this->buffer_ + this->offset_,
+ sz);
TAO_Asynch_Queued_Message *qm = 0;