aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorGravatar Lars Hjemli <hjemli@gmail.com>2008-12-06 19:35:49 (JST)
committerGravatar Lars Hjemli <hjemli@gmail.com>2008-12-06 19:35:49 (JST)
commit9c8be943f72b6f1bda5a31ce401899c3dd734e98 (patch)
tree2279ad0a7d36563df7698d6d4e81967d67eb2562 /cgit.c
parente550440233875b298f8574e9273457516791010f (diff)
parent8813170390f3c3a0f4743afbc92ede42953fa3b0 (diff)
downloadcgit-9c8be943f72b6f1bda5a31ce401899c3dd734e98.zip
cgit-9c8be943f72b6f1bda5a31ce401899c3dd734e98.tar.gz
Merge branch 'lh/sort-repolist'
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index c82587b..e09c86e 100644
--- a/cgit.c
+++ b/cgit.c
@@ -154,6 +154,8 @@ static void querystring_cb(const char *name, const char *value)
154 ctx.qry.name = xstrdup(value); 154 ctx.qry.name = xstrdup(value);
155 } else if (!strcmp(name, "mimetype")) { 155 } else if (!strcmp(name, "mimetype")) {
156 ctx.qry.mimetype = xstrdup(value); 156 ctx.qry.mimetype = xstrdup(value);
157 } else if (!strcmp(name, "s")){
158 ctx.qry.sort = xstrdup(value);
157 } 159 }
158} 160}
159 161