diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-13 01:38:17 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-13 01:38:17 +0000 |
commit | 8b36624d10273a82d9e1a3ec943355b34059942f (patch) | |
tree | 1877b28c069fb7ebcf378cf8072d1f4ef44d3fb7 /apps | |
parent | 3f7af0281310ffdc7769a0f587abd6185c09eaa0 (diff) | |
download | ATCD-8b36624d10273a82d9e1a3ec943355b34059942f.tar.gz |
ChangeLogTag: Tue Jun 12 20:35:26 2001 Krishnakumar B <kitty@cs.wustl.edu>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/JAWS/ChangeLog | 9 | ||||
-rw-r--r-- | apps/JAWS/clients/Blobby/Blob_Handler.cpp | 6 |
2 files changed, 12 insertions, 3 deletions
diff --git a/apps/JAWS/ChangeLog b/apps/JAWS/ChangeLog index 4ab5888049a..93804b0a44e 100644 --- a/apps/JAWS/ChangeLog +++ b/apps/JAWS/ChangeLog @@ -1,3 +1,10 @@ +Tue Jun 12 20:35:26 2001 Krishnakumar B <kitty@cs.wustl.edu> + + * clients/Blobby/Blob_Handler.cpp: + + Fixed a size_t printf to make gcc happy on IA-64 Linux. + + Sun Feb 18 09:33:33 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> * server/IO.cpp (handle): Added a const to the handle() method @@ -108,7 +115,7 @@ Wed Mar 22 12:36:00 2000 James Hu <jxh@cs.wustl.edu> Tue Sep 21 11:47:00 1999 Ossama Othman <othman@cs.wustl.edu> * server/HTTP_Server.cpp (init): - + Changed cast style to make gcc 2.95.1 happy. Thanks to Jeffrey Franks <Jeffrey_Franks@i-o.com> for reporting the problems. diff --git a/apps/JAWS/clients/Blobby/Blob_Handler.cpp b/apps/JAWS/clients/Blobby/Blob_Handler.cpp index b258e2f7b1f..72a8653efc8 100644 --- a/apps/JAWS/clients/Blobby/Blob_Handler.cpp +++ b/apps/JAWS/clients/Blobby/Blob_Handler.cpp @@ -273,8 +273,10 @@ ACE_Blob_Writer::send_request (void) ACE_NEW_RETURN (mesg, char [mesglen], -1); // Create the header, store the actual length in mesglen - mesglen = ACE_OS::sprintf (mesg, "%s /%s %s %d\n\n", - request_prefix_, filename_, request_suffix_, length_); + mesglen = ACE_OS::sprintf (mesg, "%s /%s %s " + ACE_SIZE_T_FORMAT_SPECIFIER"\n\n", + request_prefix_, filename_, request_suffix_, + length_); // Send the header followed by the data |