]> gitweb.ps.run Git - ps-cgit/blobdiff - cgit.c
Merge branch 'master' of git://git.klever.net/patchwork/cgit
[ps-cgit] / cgit.c
diff --git a/cgit.c b/cgit.c
index 2036ceb0ee427fb37054033ecc21e74655104d06..0deae12d2fd04d911a0772fa2a569c73694ddb08 100644 (file)
--- a/cgit.c
+++ b/cgit.c
@@ -144,6 +144,8 @@ static void querystring_cb(const char *name, const char *value)
                ctx.qry.path = trim_end(value, '/');
        } else if (!strcmp(name, "name")) {
                ctx.qry.name = xstrdup(value);
+       } else if (!strcmp(name, "mimetype")) {
+               ctx.qry.mimetype = xstrdup(value);
        }
 }
 
@@ -380,7 +382,7 @@ int main(int argc, const char **argv)
        err = cache_process(ctx.cfg.cache_size, ctx.cfg.cache_root,
                            ctx.qry.raw, ttl, process_request, &ctx);
        if (err)
-               cache_log("[cgit] error %d - %s\n",
-                         err, strerror(err));
+               cgit_print_error(fmt("Error processing page: %s (%d)",
+                                    strerror(err), err));
        return err;
 }