aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/internal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/internal.c b/src/daemon/internal.c
index 433d4886..5e2ff553 100644
--- a/src/daemon/internal.c
+++ b/src/daemon/internal.c
@@ -61,7 +61,7 @@ MHD_http_unescape (char *val)
61 "%2x", &num)) || (1 == sscanf (&esc[1], "%2X", &num))) 61 "%2x", &num)) || (1 == sscanf (&esc[1], "%2X", &num)))
62 { 62 {
63 esc[0] = (unsigned char) num; 63 esc[0] = (unsigned char) num;
64 memmove (&esc[1], &esc[3], strlen (&esc[3])); 64 memmove (&esc[1], &esc[3], strlen (&esc[3]) + 1);
65 } 65 }
66 val = esc + 1; 66 val = esc + 1;
67 } 67 }