summaryrefslogtreecommitdiff
path: root/main/rfc1867.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2004-03-24 14:28:41 +0000
committerDerick Rethans <derick@php.net>2004-03-24 14:28:41 +0000
commit9ff10d086a699557e0b2c9ca99dbcfd0f8e330dc (patch)
treeb09343216afd79573d0030b7e24f2e3d0689f086 /main/rfc1867.c
parent6d9d08bf55cdb2d517a1b62ed9410ac971657c91 (diff)
downloadphp-git-9ff10d086a699557e0b2c9ca99dbcfd0f8e330dc.tar.gz
- Revert bogus commit
Diffstat (limited to 'main/rfc1867.c')
-rw-r--r--main/rfc1867.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c
index 1370f5b5a6..3988a9f330 100644
--- a/main/rfc1867.c
+++ b/main/rfc1867.c
@@ -957,22 +957,16 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler)
while (!cancel_upload && (blen = multipart_buffer_read(mbuff, buff, sizeof(buff) TSRMLS_CC)))
{
if (PG(upload_max_filesize) > 0 && total_bytes > PG(upload_max_filesize)) {
-#ifdef DEBUG_FILE_UPLOAD
- sapi_module.sapi_error(E_NOTICE, "upload_max_filesize of %ld bytes exceeded - file [%s=%s] not saved", PG(upload_max_filesize), param, filename);
-#endif
+ sapi_module.sapi_error(E_WARNING, "upload_max_filesize of %ld bytes exceeded - file [%s=%s] not saved", PG(upload_max_filesize), param, filename);
cancel_upload = UPLOAD_ERROR_A;
} else if (max_file_size && (total_bytes > max_file_size)) {
-#ifdef DEBUG_FILE_UPLOAD
- sapi_module.sapi_error(E_NOTICE, "MAX_FILE_SIZE of %ld bytes exceeded - file [%s=%s] not saved", max_file_size, param, filename);
-#endif
+ sapi_module.sapi_error(E_WARNING, "MAX_FILE_SIZE of %ld bytes exceeded - file [%s=%s] not saved", max_file_size, param, filename);
cancel_upload = UPLOAD_ERROR_B;
} else if (blen > 0) {
wlen = fwrite(buff, 1, blen, fp);
if (wlen < blen) {
-#ifdef DEBUG_FILE_UPLOAD
- sapi_module.sapi_error(E_NOTICE, "Only %d bytes were written, expected to write %ld", wlen, blen);
-#endif
+ sapi_module.sapi_error(E_WARNING, "Only %d bytes were written, expected to write %ld", wlen, blen);
cancel_upload = UPLOAD_ERROR_C;
} else {
total_bytes += wlen;