summaryrefslogtreecommitdiff
path: root/sapi/cgi/cgi_main.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-05-27 16:38:49 +0000
committerAndi Gutmans <andi@php.net>2000-05-27 16:38:49 +0000
commit8c82566b48fc4ca837d83e1980f5cb681bb435ce (patch)
treee038e7d8ca7c12161e0e33730a17ad3be37b19d9 /sapi/cgi/cgi_main.c
parent030c0fd415040239ea8323293bf143112d799c76 (diff)
downloadphp-git-8c82566b48fc4ca837d83e1980f5cb681bb435ce.tar.gz
- Fix problem in sessions module under Win32. Need to use ; as an options
- delimiter in save_path instead of :.
Diffstat (limited to 'sapi/cgi/cgi_main.c')
-rw-r--r--sapi/cgi/cgi_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index b1a1df722f..9230f736f1 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -86,7 +86,7 @@ extern int ap_php_optind;
static int sapi_cgibin_ub_write(const char *str, uint str_length)
{
- int ret;
+ size_t ret;
ret = fwrite(str, 1, str_length, stdout);
if (ret != str_length) {