aboutsummaryrefslogtreecommitdiffstats
path: root/ui-snapshot.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2011-06-02 10:33:23 +0000
committerLars Hjemli <hjemli@gmail.com>2011-06-02 10:33:23 +0000
commit7eb9f9e980c2ce1d93c979c4725cf7b60083b7b4 (patch)
tree43a1da7034986da6e16724690d3bbfacf8117e7d /ui-snapshot.c
parentui-stats.c: fix invalid html (diff)
parentui-log.c: do not link from age column (diff)
downloadcgit-7eb9f9e980c2ce1d93c979c4725cf7b60083b7b4.tar.xz
cgit-7eb9f9e980c2ce1d93c979c4725cf7b60083b7b4.zip
Merge branch 'stable'
Diffstat (limited to 'ui-snapshot.c')
-rw-r--r--ui-snapshot.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui-snapshot.c b/ui-snapshot.c
index 067082c..126779d 100644
--- a/ui-snapshot.c
+++ b/ui-snapshot.c
@@ -119,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 == '_'))