ui-snapshot.c: remove debug cruft

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
このコミットが含まれているのは:
Lars Hjemli 2011-06-02 10:26:41 +00:00
コミット 2aabeaf834
1個のファイルの変更0行の追加2行の削除

ファイルの表示

@ -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 == '_'))