From: Michael Wallner Date: Fri, 4 Nov 2005 11:42:41 +0000 (+0000) Subject: - fix php4 build X-Git-Tag: RELEASE_0_17_0~1 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=d23b45cea3f50c901c12a05f53eb3cfee594d0e4 - fix php4 build --- diff --git a/http_functions.c b/http_functions.c index 7d82438..469dd94 100644 --- a/http_functions.c +++ b/http_functions.c @@ -1391,7 +1391,7 @@ PHP_FUNCTION(http_build_query) } formstr = phpstr_new(); - if (SUCCESS != http_urlencode_hash_recursive(HASH_OF(formdata), formstr, arg_sep, prefix, prefix_len)) { + if (SUCCESS != http_urlencode_hash_recursive(HASH_OF(formdata), formstr, arg_sep, arg_sep_len, prefix, prefix_len)) { phpstr_free(&formstr); RETURN_FALSE; }