diff options
author | foobar <sniper@php.net> | 2003-07-03 02:59:04 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-07-03 02:59:04 +0000 |
commit | 50d3650a92bc52f30d99f5842237d2abdb8dcfbc (patch) | |
tree | eb956b16096ed56e3903f2ac7d616c814a33ac65 | |
parent | a96aa89ae3a48dfe7ce33e9ba518e3da3e32989a (diff) | |
download | php-git-50d3650a92bc52f30d99f5842237d2abdb8dcfbc.tar.gz |
Cut the long line a bit for readability..
-rw-r--r-- | main/rfc1867.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index 24e1ddde18..6afab9c611 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -696,7 +696,9 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) { char *boundary, *s=NULL, *boundary_end = NULL, *start_arr=NULL, *array_index=NULL; char *temp_filename=NULL, *lbuf=NULL, *abuf=NULL; - int boundary_len=0, total_bytes=0, cancel_upload=0, is_arr_upload=0, array_len=0, max_file_size=0, skip_upload=0, anonindex=0, is_anonymous; zval *http_post_files=NULL; + int boundary_len=0, total_bytes=0, cancel_upload=0, is_arr_upload=0, array_len=0; + int max_file_size=0, skip_upload=0, anonindex=0, is_anonymous; + zval *http_post_files=NULL; #if HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING) int str_len=0 #endif |