From b0884491aebc2cd3dae71d6d588a113e1b3ddc05 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Sat, 31 May 2003 17:02:01 +0000 Subject: [PATCH] MFH(r-1.231): CGI SAPI should honour this setting (arg_separator.input) --- sapi/cgi/cgi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 694d18aa54..1722cf8583 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -1426,7 +1426,7 @@ consult the installation file that came with this distribution, or visit \n\ for (i = optind, len = 0; i < argc; i++) { strcat(s, argv[i]); if (i < (argc - 1)) { - strcat(s, "&"); + strcat(s, PG(arg_separator).input); } } SG(request_info).query_string = s; -- 2.40.0