From 8b36624d10273a82d9e1a3ec943355b34059942f Mon Sep 17 00:00:00 2001 From: kitty Date: Wed, 13 Jun 2001 01:38:17 +0000 Subject: ChangeLogTag: Tue Jun 12 20:35:26 2001 Krishnakumar B --- apps/JAWS/ChangeLog | 9 ++++++++- apps/JAWS/clients/Blobby/Blob_Handler.cpp | 6 ++++-- 2 files changed, 12 insertions(+), 3 deletions(-) (limited to 'apps') 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 + + * 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 * server/IO.cpp (handle): Added a const to the handle() method @@ -108,7 +115,7 @@ Wed Mar 22 12:36:00 2000 James Hu Tue Sep 21 11:47:00 1999 Ossama Othman * server/HTTP_Server.cpp (init): - + Changed cast style to make gcc 2.95.1 happy. Thanks to Jeffrey Franks 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 -- cgit v1.2.1