diff options
author | Zeev Suraski <zeev@php.net> | 1999-06-12 17:50:39 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-06-12 17:50:39 +0000 |
commit | 96bfbc79040d9a1dea092d35ec570b3f7cc6b51b (patch) | |
tree | 8744e3033782a9e1f5330a63f005419460f85cd8 /main/SAPI.c | |
parent | c50cd2df991645401afc165313b8da38eb6dfc15 (diff) | |
download | php-git-96bfbc79040d9a1dea092d35ec570b3f7cc6b51b.tar.gz |
First attempt at moving the old RFC1867 support to the right place
Diffstat (limited to 'main/SAPI.c')
-rw-r--r-- | main/SAPI.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/SAPI.c b/main/SAPI.c index bc93cd4738..c0c6fa19bf 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -31,7 +31,7 @@ #endif -static SAPI_POST_READER_FUNC(sapi_read_standard_form_data); +SAPI_POST_READER_FUNC(sapi_read_standard_form_data); #define DEFAULT_POST_CONTENT_TYPE "application/x-www-form-urlencoded" @@ -130,7 +130,7 @@ static void sapi_read_post_data(SLS_D) } -static SAPI_POST_READER_FUNC(sapi_read_standard_form_data) +SAPI_POST_READER_FUNC(sapi_read_standard_form_data) { int read_bytes, total_read_bytes=0; int allocated_bytes=SAPI_POST_BLOCK_SIZE+1; |