X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/547a64fbd65de293c290f4e18bbeae958d54aaa7..756e3ea6392e30bcd0a41346d4ffa42c56d715e2:/ui-snapshot.c diff --git a/ui-snapshot.c b/ui-snapshot.c index 1b25dca..07cc944 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c @@ -92,6 +92,7 @@ static int make_snapshot(const struct cgit_snapshot_format *format, } args.tree = commit->tree; args.time = commit->date; + args.compression_level = Z_DEFAULT_COMPRESSION; ctx.page.mimetype = xstrdup(format->mimetype); ctx.page.filename = xstrdup(filename); cgit_print_http_headers(&ctx); @@ -118,13 +119,11 @@ static const char *get_ref_from_filename(const char *url, const char *filename, snapshot = xstrdup(filename); snapshot[strlen(snapshot) - strlen(format->suffix)] = '\0'; - fprintf(stderr, "snapshot=%s\n", snapshot); if (get_sha1(snapshot, sha1) == 0) return snapshot; reponame = cgit_repobasename(url); - fprintf(stderr, "reponame=%s\n", reponame); if (prefixcmp(snapshot, reponame) == 0) { snapshot += strlen(reponame); while (snapshot && (*snapshot == '-' || *snapshot == '_'))