summaryrefslogtreecommitdiffabout
path: root/cgit.c
authorLars Hjemli <hjemli@gmail.com>2010-07-18 13:03:30 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2010-07-18 13:03:30 (UTC)
commit6821d8ea4a64d15b8f284d1af01ab184ef1e76c3 (patch) (unidiff)
treee9d2ea0555f801653cc9caa382e33afc7c5d804d /cgit.c
parent5c5d189635287a3bfaa1a4aef133dc0c582a27c2 (diff)
parent72ef913514288bd2aae23509581097bfd3edf8c4 (diff)
downloadcgit-6821d8ea4a64d15b8f284d1af01ab184ef1e76c3.zip
cgit-6821d8ea4a64d15b8f284d1af01ab184ef1e76c3.tar.gz
cgit-6821d8ea4a64d15b8f284d1af01ab184ef1e76c3.tar.bz2
Merge branch 'jh/ignorews'
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index fde0757..c263872 100644
--- a/cgit.c
+++ b/cgit.c
@@ -257,12 +257,14 @@ static void querystring_cb(const char *name, const char *value)
257 } else if (!strcmp(name, "ss")) { 257 } else if (!strcmp(name, "ss")) {
258 ctx.qry.ssdiff = atoi(value); 258 ctx.qry.ssdiff = atoi(value);
259 } else if (!strcmp(name, "all")) { 259 } else if (!strcmp(name, "all")) {
260 ctx.qry.show_all = atoi(value); 260 ctx.qry.show_all = atoi(value);
261 } else if (!strcmp(name, "context")) { 261 } else if (!strcmp(name, "context")) {
262 ctx.qry.context = atoi(value); 262 ctx.qry.context = atoi(value);
263 } else if (!strcmp(name, "ignorews")) {
264 ctx.qry.ignorews = atoi(value);
263 } 265 }
264} 266}
265 267
266char *xstrdupn(const char *str) 268char *xstrdupn(const char *str)
267{ 269{
268 return (str ? xstrdup(str) : NULL); 270 return (str ? xstrdup(str) : NULL);