bhyde 99/10/17 09:39:43
Modified: src/main util_script.c
Log:
Eliminate warning about create_argv_cmd being unused. Code's topology needs
work.
Revision Changes Path
1.12 +2 -1 apache-2.0/src/main/util_script.c
Index: util_script.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/main/util_script.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- util_script.c 1999/10/17 01:59:20 1.11
+++ util_script.c 1999/10/17 16:39:42 1.12
@@ -81,6 +81,7 @@
#define MALFORMED_MESSAGE "malformed header from script. Bad header="
#define MALFORMED_HEADER_LENGTH_TO_SHOW 30
+#if defined(OS2) || defined(WIN32)
/* If a request includes query info in the URL (stuff after "?"), and
* the query info does not contain "=" (indicative of a FORM submission),
* then this routine is called to create the argument list to be passed
@@ -135,7 +136,7 @@
av[idx] = NULL;
return av;
}
-
+#endif /* defined(OS2) || defined(WIN32) */
static char *http2env(ap_context_t *a, char *w)
{