about summary refs log tree commit diff
path: root/parsing.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-12-28 02:51:46 +0100
committerLars Hjemli <hjemli@gmail.com>2006-12-28 02:51:46 +0100
commit05b13194b4b40a2614692125d5037ef20c5fb20e (patch)
tree5f22ac2e53d5ea3cb8fc50e2ca59c524a7180574 /parsing.c
parentAdd basic log filtering (diff)
downloadcgit-pink-05b13194b4b40a2614692125d5037ef20c5fb20e.tar.gz
cgit-pink-05b13194b4b40a2614692125d5037ef20c5fb20e.zip
Handle '+' in querystring
Translate '+' to ' ' in querystring parser (still doesn't handle %xx)

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'parsing.c')
-rw-r--r--parsing.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c
index 4d5cc74..1b22fcf 100644
--- a/parsing.c
+++ b/parsing.c
@@ -92,6 +92,8 @@ int cgit_parse_query(char *txt, configfn fn)
 		if (c=='=') {
 			*t = '\0';
 			value = t+1;
+		} else if (c=='+') {
+			*t = ' ';
 		} else if (c=='&') {
 			*t = '\0';
 			(*fn)(txt, value);