author | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 01:51:46 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 01:51:46 (UTC) |
commit | 05b13194b4b40a2614692125d5037ef20c5fb20e (patch) (side-by-side diff) | |
tree | 5f22ac2e53d5ea3cb8fc50e2ca59c524a7180574 | |
parent | 732d68d240b95dc428c92fc94bce9adb8912094e (diff) | |
download | cgit-05b13194b4b40a2614692125d5037ef20c5fb20e.zip cgit-05b13194b4b40a2614692125d5037ef20c5fb20e.tar.gz cgit-05b13194b4b40a2614692125d5037ef20c5fb20e.tar.bz2 |
Handle '+' in querystring
Translate '+' to ' ' in querystring parser (still doesn't handle %xx)
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | parsing.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -71,48 +71,50 @@ int cgit_read_config(const char *filename, configfn fn) if (!f) return -1; while((len = read_config_line(f, line, &value, sizeof(line))) > 0) (*fn)(line, value); fclose(f); return ret; } int cgit_parse_query(char *txt, configfn fn) { char *t, *value = NULL, c; if (!txt) return 0; t = txt = xstrdup(txt); while((c=*t) != '\0') { if (c=='=') { *t = '\0'; value = t+1; + } else if (c=='+') { + *t = ' '; } else if (c=='&') { *t = '\0'; (*fn)(txt, value); txt = t+1; value = NULL; } t++; } if (t!=txt) (*fn)(txt, value); return 0; } char *substr(const char *head, const char *tail) { char *buf; buf = xmalloc(tail - head + 1); strncpy(buf, head, tail - head); buf[tail - head] = '\0'; return buf; } struct commitinfo *cgit_parse_commit(struct commit *commit) |