summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2018-07-30 07:20:20 +0100
committerKatolaZ <katolaz@freaknet.org>2018-07-30 07:20:20 +0100
commit6856761423c002230f49c69e491f42512b11a357 (patch)
tree55175084bad939497c5f09936c61defb3d985a22 /html.c
parentee667540e07eaffaed612e8ca8572611ea1f42d9 (diff)
fixed repo and summary header
Diffstat (limited to 'html.c')
-rw-r--r--html.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/html.c b/html.c
index 3f1de28..7f81965 100644
--- a/html.c
+++ b/html.c
@@ -335,7 +335,6 @@ void http_parse_querystring(const char *txt, void (*fn)(const char *name, const
while (t && *t) {
char *name = url_decode_parameter_name(&t);
if (*name) {
- fprintf(stderr, "http_parse_querystring -- name: %s\n", name);
char *value = url_decode_parameter_value(&t);
fn(name, value);
free(value);