summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2006-02-15 15:19:10 +0000
committerJan Kneschke <jan@kneschke.de>2006-02-15 15:19:10 +0000
commitf08b817f1582dd1a3eb7e761c0206a44938270eb (patch)
tree58859405501a040621ee51cf4414c9d35226a59d
parent3331b5a6169ddb95dead588a979067db56e072e4 (diff)
downloadlighttpd-git-f08b817f1582dd1a3eb7e761c0206a44938270eb.tar.gz
don't terminate the request, just ignore it
git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@999 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--src/mod_cgi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_cgi.c b/src/mod_cgi.c
index 883bf984..647f7852 100644
--- a/src/mod_cgi.c
+++ b/src/mod_cgi.c
@@ -1128,7 +1128,7 @@ URIHANDLER_FUNC(cgi_is_handled) {
plugin_data *p = p_d;
buffer *fn = con->physical.path;
- if (fn->used == 0) return HANDLER_ERROR;
+ if (fn->used == 0) return HANDLER_GO_ON;
mod_cgi_patch_connection(srv, con, p);