summaryrefslogtreecommitdiffabout
path: root/shared.c
Unidiff
Diffstat (limited to 'shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--shared.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index 18b795b..7def51a 100644
--- a/shared.c
+++ b/shared.c
@@ -33,12 +33,13 @@ int cgit_query_has_symref = 0;
33int cgit_query_has_sha1 = 0; 33int cgit_query_has_sha1 = 0;
34 34
35char *cgit_querystring = NULL; 35char *cgit_querystring = NULL;
36char *cgit_query_repo = NULL; 36char *cgit_query_repo = NULL;
37char *cgit_query_page = NULL; 37char *cgit_query_page = NULL;
38char *cgit_query_head = NULL; 38char *cgit_query_head = NULL;
39char *cgit_query_search = NULL;
39char *cgit_query_sha1 = NULL; 40char *cgit_query_sha1 = NULL;
40char *cgit_query_sha2 = NULL; 41char *cgit_query_sha2 = NULL;
41int cgit_query_ofs = 0; 42int cgit_query_ofs = 0;
42 43
43int htmlfd = 0; 44int htmlfd = 0;
44 45
@@ -83,12 +84,14 @@ void cgit_repo_config_cb(const char *name, const char *value)
83void cgit_querystring_cb(const char *name, const char *value) 84void cgit_querystring_cb(const char *name, const char *value)
84{ 85{
85 if (!strcmp(name,"r")) { 86 if (!strcmp(name,"r")) {
86 cgit_query_repo = xstrdup(value); 87 cgit_query_repo = xstrdup(value);
87 } else if (!strcmp(name, "p")) { 88 } else if (!strcmp(name, "p")) {
88 cgit_query_page = xstrdup(value); 89 cgit_query_page = xstrdup(value);
90 } else if (!strcmp(name, "q")) {
91 cgit_query_search = xstrdup(value);
89 } else if (!strcmp(name, "h")) { 92 } else if (!strcmp(name, "h")) {
90 cgit_query_head = xstrdup(value); 93 cgit_query_head = xstrdup(value);
91 cgit_query_has_symref = 1; 94 cgit_query_has_symref = 1;
92 } else if (!strcmp(name, "id")) { 95 } else if (!strcmp(name, "id")) {
93 cgit_query_sha1 = xstrdup(value); 96 cgit_query_sha1 = xstrdup(value);
94 cgit_query_has_sha1 = 1; 97 cgit_query_has_sha1 = 1;