diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-04-09 14:36:47 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-04-09 14:36:47 -0400 |
commit | a9d63c44fad31322477b51c11655adfb7002712e (patch) | |
tree | 129120a683d01c00c6deb50349c48d8975dfd573 /src/c/cgi.c | |
parent | bb8cd3211735e282f6e61a5bc9136eec616379e4 (diff) |
Each context gets its own non-repeating sequence of source numbers
Diffstat (limited to 'src/c/cgi.c')
-rw-r--r-- | src/c/cgi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/cgi.c b/src/c/cgi.c index 50d64f58..52d122ca 100644 --- a/src/c/cgi.c +++ b/src/c/cgi.c @@ -56,7 +56,7 @@ static void log_debug(void *data, const char *fmt, ...) { } int main(int argc, char *argv[]) { - uw_context ctx = uw_request_new_context(&uw_application, NULL, log_error, log_debug); + uw_context ctx = uw_request_new_context(0, &uw_application, NULL, log_error, log_debug); uw_request_context rc = uw_new_request_context(); request_result rr; char *method = getenv("REQUEST_METHOD"), |