You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Randy Terbush <ra...@zyzzyva.com> on 1997/01/25 04:50:41 UTC

[PATCH] fix for create_argv not passing first arg

If argument foo=bar is passed to a CGI with someprog.cgi?foo=bar,
the string is passed in QUERY_STRING, but not in the argv[].

if argument foo is passed to a CGI with someprog.cgi?foo, the
argument appears in the argv[] as well as the QUERY_STRING.

Is this correct behavior?