From f81dd04a8952b8d7a06264d742f5b1cca0ff7229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= <andreas@lonelycoder.com> Date: Sun, 4 May 2008 06:46:20 +0000 Subject: [PATCH] Remove key value printing --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 12766d9d..acce2542 100644 --- a/http.c +++ b/http.c @@ -899,7 +899,7 @@ http_parse_get_args(http_connection_t *hc, char *args) http_deescape(k); http_deescape(v); - printf("%s = %s\n", k, v); + // printf("%s = %s\n", k, v); http_arg_set(&hc->hc_req_args, k, v); } }