summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-13 02:07:19 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-13 02:07:19 +0000
commitfb2dd2102cca76f4cf99249afeb1871543f14592 (patch)
tree8cc8ef5d095db4a1db24ceec5951db22ff28ac02
parent748b1e59a451194018672df9d7638271001712d6 (diff)
downloadATCD-fb2dd2102cca76f4cf99249afeb1871543f14592.tar.gz
Changed to use sendv_n.
-rw-r--r--TAO/tao/GIOP.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/GIOP.cpp b/TAO/tao/GIOP.cpp
index d395fa07095..dd7915fe460 100644
--- a/TAO/tao/GIOP.cpp
+++ b/TAO/tao/GIOP.cpp
@@ -267,8 +267,8 @@ TAO_GIOP::send_request (TAO_SVC_HANDLER *handler,
// iovec, there we should set TAO_WRITEV_MAX to that limit.
if (iovcnt == TAO_WRITEV_MAX)
{
- ssize_t n = peer.send_n (iov,
- iovcnt);
+ ssize_t n = peer.sendv_n (iov,
+ iovcnt);
if (n == -1)
{
if (TAO_orbdebug)
@@ -296,8 +296,8 @@ TAO_GIOP::send_request (TAO_SVC_HANDLER *handler,
if (iovcnt != 0)
{
- ssize_t n = peer.send_n (iov,
- iovcnt);
+ ssize_t n = peer.sendv_n (iov,
+ iovcnt);
if (n == -1)
{
if (TAO_orbdebug)