summaryrefslogtreecommitdiff
path: root/tests/fcgi-responder.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-12-23 00:38:43 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-12-23 03:50:13 -0500
commitb598bb53f961cdc5743b034f646c7633806fc832 (patch)
treeca0e130a6df4ac66f52f208c99ad2f3686e455d9 /tests/fcgi-responder.c
parent89a3987ce7d6c109269d3370d464994d8feee5cf (diff)
downloadlighttpd-git-b598bb53f961cdc5743b034f646c7633806fc832.tar.gz
[tests] remove FastCGI test dependency on PHP
Diffstat (limited to 'tests/fcgi-responder.c')
-rw-r--r--tests/fcgi-responder.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/fcgi-responder.c b/tests/fcgi-responder.c
index 64bcc2a9..31ec884b 100644
--- a/tests/fcgi-responder.c
+++ b/tests/fcgi-responder.c
@@ -198,10 +198,6 @@ fcgi_process_params (FILE * const stream, int req_id, int role, unsigned char *
if (NULL == p)
cdata = NULL;
- else if (9 == len && 0 == memcmp(p, "path_info", 9))
- cdata = fcgi_getenv(r, rlen, "PATH_INFO", 9, &len);
- else if (11 == len && 0 == memcmp(p, "script_name", 11))
- cdata = fcgi_getenv(r, rlen, "SCRIPT_NAME", 11, &len);
else if (len > 4 && 0 == memcmp(p, "env=", 4))
cdata = fcgi_getenv(r, rlen, p+4, len-4, &len);
else if (8 == len && 0 == memcmp(p, "auth-var", 8))