aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/formdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/formdata.c b/lib/formdata.c
index 656e4de1b..e7e0dd9ee 100644
--- a/lib/formdata.c
+++ b/lib/formdata.c
@@ -115,7 +115,7 @@ int FormParse(char *input,
struct HttpPost *subpost; /* a sub-node */
unsigned int i;
- if(1 <= sscanf(input, "%255[^ =] = %4095[^\n]", name, contents)) {
+ if(1 <= sscanf(input, "%255[^=]=%4095[^\n]", name, contents)) {
/* the input was using the correct format */
contp = contents;