summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send_Msg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO_Send_Msg.cpp')
-rw-r--r--ace/FIFO_Send_Msg.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/ace/FIFO_Send_Msg.cpp b/ace/FIFO_Send_Msg.cpp
index 844ce5e5cd9..8d947252002 100644
--- a/ace/FIFO_Send_Msg.cpp
+++ b/ace/FIFO_Send_Msg.cpp
@@ -24,10 +24,13 @@ ACE_FIFO_Send_Msg::send (const ACE_Str_Buf &send_msg)
{
// ACE_TRACE ("ACE_FIFO_Send_Msg::send");
#if defined (ACE_HAS_STREAM_PIPES)
- return ACE_OS::putmsg (this->get_handle (),
- (strbuf *) 0,
- (strbuf *) &send_msg,
- 0);
+ if (ACE_OS::putmsg (this->get_handle (),
+ (strbuf *) 0,
+ (strbuf *) &send_msg,
+ 0) == -1)
+ return -1;
+ else
+ return send_msg.len;
#else
iovec iov[2];