summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-01-03 12:52:01 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-01-03 12:52:01 +0000
commit277bc65ace65ea7067a1dc26179b230cdd00278b (patch)
tree15473dbbb8bd170f36f71ce8715ed265a323a043
parent9630f591ec08d7438ea5970a93626cfa2585ec38 (diff)
downloadATCD-277bc65ace65ea7067a1dc26179b230cdd00278b.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/GIOP_Message_Handler.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/TAO/tao/GIOP_Message_Handler.cpp b/TAO/tao/GIOP_Message_Handler.cpp
index ea9269eb4d9..42665ef6308 100644
--- a/TAO/tao/GIOP_Message_Handler.cpp
+++ b/TAO/tao/GIOP_Message_Handler.cpp
@@ -35,7 +35,6 @@ TAO_GIOP_Message_Handler::read_parse_message (TAO_Transport *transport)
// Read the message from the transport. The size of the message read
// is the maximum size of the buffer that we have less the amount of
// data that has already been read in to the buffer.
- size_t sp = this->current_buffer_.space ();
ssize_t n = transport->read (this->current_buffer_.wr_ptr (),
this->current_buffer_.space ());
@@ -319,7 +318,7 @@ TAO_GIOP_Message_Handler::more_messages (void)
return this->parse_header ();
else
{
- // We have some message but it is not of suffcieint length
+ // We have some message but it is not of sufficient length
// for us to process. We copy that left over piece to the
// start of the <current_buffer_> and align the rd_ptr &
// wr_ptr.