summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS/clients
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-13 03:27:32 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-13 03:27:32 +0000
commit1eb4bf9bee02144405ca241cd683e4354ac239a2 (patch)
tree7cc798de45c4bd5385fca638d7e19f687b56d89b /ACE/apps/JAWS/clients
parentef91e85827127b0895d2094ba699294a541cfc43 (diff)
downloadATCD-1eb4bf9bee02144405ca241cd683e4354ac239a2.tar.gz
Diffstat (limited to 'ACE/apps/JAWS/clients')
-rw-r--r--ACE/apps/JAWS/clients/Blobby/Blob_Handler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/apps/JAWS/clients/Blobby/Blob_Handler.cpp b/ACE/apps/JAWS/clients/Blobby/Blob_Handler.cpp
index 25ecfa6da9d..2d9c72657dc 100644
--- a/ACE/apps/JAWS/clients/Blobby/Blob_Handler.cpp
+++ b/ACE/apps/JAWS/clients/Blobby/Blob_Handler.cpp
@@ -122,7 +122,7 @@ ACE_Blob_Reader::receive_reply (void)
ssize_t len;
char buf [MAX_HEADER_SIZE + 1];
char *buf_ptr;
- int bytes_read = 0;
+ size_t bytes_read = 0;
size_t bytes_left = this->length_;
size_t offset_left = this->offset_;
@@ -167,7 +167,7 @@ ACE_Blob_Reader::receive_reply (void)
// Determine how many data bytes are actually there. This is
// basically the total number of data bytes we read minus any
// offset we have.
- int data_bytes = bytes_read - offset_left;
+ size_t data_bytes = bytes_read - offset_left;
// Check for the case where the bytes read are enough to fulfill
// our request (for length bytes). If this is the case, then we
@@ -202,14 +202,14 @@ ACE_Blob_Reader::receive_reply (void)
offset_left -= bytes_read;
}
- // If we had any offset left, take care of that.
+ // If we ad any offset left, take care of that.
while (offset_left > 0)
{
// MAX_HEADER_SIZE in which case we should do a receive of
// offset bytes into a temporary buffer. Otherwise, we should
// receive MAX_HEADER_SIZE bytes into temporary buffer and
// decrement offset_left.
- if (offset_left < (int) (sizeof buf))
+ if (offset_left < (sizeof buf))
len = offset_left;
else
len = sizeof buf;