pollita         Wed Aug 11 00:27:01 2004 EDT

  Modified files:              
    /php-src/main       rfc1867.c 
  Log:
  Minor format specifier fixes
  
http://cvs.php.net/diff.php/php-src/main/rfc1867.c?r1=1.160&r2=1.161&ty=u
Index: php-src/main/rfc1867.c
diff -u php-src/main/rfc1867.c:1.160 php-src/main/rfc1867.c:1.161
--- php-src/main/rfc1867.c:1.160        Sun Jul 25 15:19:26 2004
+++ php-src/main/rfc1867.c      Wed Aug 11 00:27:01 2004
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: rfc1867.c,v 1.160 2004/07/25 19:19:26 iliaa Exp $ */
+/* $Id: rfc1867.c,v 1.161 2004/08/11 04:27:01 pollita Exp $ */
 
 /*
  *  This product includes software developed by the Apache Group
@@ -786,7 +786,7 @@
        zend_llist header;
 
        if (SG(request_info).content_length > SG(post_max_size)) {
-               sapi_module.sapi_error(E_WARNING, "POST Content-Length of %d bytes 
exceeds the limit of %d bytes", SG(request_info).content_length, SG(post_max_size));
+               sapi_module.sapi_error(E_WARNING, "POST Content-Length of %ld bytes 
exceeds the limit of %ld bytes", SG(request_info).content_length, SG(post_max_size));
                return;
        }
 
@@ -981,7 +981,7 @@
                        
                                        if (wlen < blen) {
 #if DEBUG_FILE_UPLOAD
-                                               sapi_module.sapi_error(E_NOTICE, "Only 
%d bytes were written, expected to write %ld", wlen, blen);
+                                               sapi_module.sapi_error(E_NOTICE, "Only 
%d bytes were written, expected to write %d", wlen, blen);
 #endif
                                                cancel_upload = UPLOAD_ERROR_C;
                                        } else {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to