summaryrefslogtreecommitdiff
path: root/ace/IOStream.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-20 00:59:18 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-20 00:59:18 +0000
commite53030f772116b3383c5c3524f7c599aec1636f9 (patch)
treef8b5f6e0f4f28f2d24ad9eedc57767c06611dcde /ace/IOStream.cpp
parentadd50744eba7618a30d99573840c577b952a7d38 (diff)
downloadATCD-e53030f772116b3383c5c3524f7c599aec1636f9.tar.gz
!
'
Diffstat (limited to 'ace/IOStream.cpp')
-rw-r--r--ace/IOStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/IOStream.cpp b/ace/IOStream.cpp
index 6456ced1a8d..2cdf10153c9 100644
--- a/ace/IOStream.cpp
+++ b/ace/IOStream.cpp
@@ -400,7 +400,7 @@ ACE_Streambuf::get_one_byte (void)
// anything else in the buffer. (Ok, we could use flags to tell it
// to block but I like this better.)
- if (this->recv_n (base (), 1, MSG_PEEK, recv_timeout_) != 1)
+ if (this->recv_n (base (), 1, MSG_PEEK, this->recv_timeout_) != 1)
{
if (errno == ETIME)
this->timeout_ = 1;
@@ -425,7 +425,7 @@ ACE_Streambuf::fillbuf (void)
// Now, get whatever else may be in the buffer. This will return if
// there is nothing in the buffer.
- int bc = this->recv (base (), blen (), recv_timeout_);
+ int bc = this->recv (base (), blen (), this->recv_timeout_);
// recv will give us -1 if there was a problem. If there was
// nothing waiting to be read, it will give us 0. That isn't an