commit e10486fa108df2eb954df81ffcbf5f82d2539c14
parent 340f4b759cff6270e90d802f55e412e10f8f9997
Author: Joris Vink <joris@coders.se>
Date: Thu, 24 Oct 2013 08:56:17 +0200
Change urldecode back to 0
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/http.c b/src/http.c
@@ -581,7 +581,7 @@ http_argument_urldecode(char *arg)
h[3] = *(p + 2);
h[4] = '\0';
- v = kore_strtonum(h, 16, 20, 255, &err);
+ v = kore_strtonum(h, 16, 0, 255, &err);
if (err != KORE_RESULT_OK)
return (err);