From d23b45cea3f50c901c12a05f53eb3cfee594d0e4 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 4 Nov 2005 11:42:41 +0000 Subject: [PATCH] - fix php4 build --- http_functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2