Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -10,7 +10,6 @@ #include "cache.h" #include "cmd.h" #include "configfile.h" -#include "html.h" #include "ui-shared.h" const char *cgit_version = CGIT_VERSION; @@ -445,7 +444,7 @@ int main(int argc, const char **argv) if (getenv("QUERY_STRING")) ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); cgit_parse_args(argc, argv); - http_parse_querystring(ctx.qry.raw, querystring_cb); + cgit_parse_query(ctx.qry.raw, querystring_cb); if (!cgit_prepare_cache(&item)) return 0; if (ctx.cfg.nocache) { |