summaryrefslogtreecommitdiff
path: root/main/SAPI.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-06-12 17:50:39 +0000
committerZeev Suraski <zeev@php.net>1999-06-12 17:50:39 +0000
commit96bfbc79040d9a1dea092d35ec570b3f7cc6b51b (patch)
tree8744e3033782a9e1f5330a63f005419460f85cd8 /main/SAPI.c
parentc50cd2df991645401afc165313b8da38eb6dfc15 (diff)
downloadphp-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.c4
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;