about summary refs log tree commit diff stats
path: root/scan-tree.c
diff options
context:
space:
mode:
authorChristian Hesse2014-06-29 18:52:16 +0200
committerJason A. Donenfeld2014-06-29 20:18:42 +0200
commit4b91269bdbc21a664cc56c26d6071c630560f2e0 (patch)
treebef8a6bebf724b06f7d2f11f01b46d65f36cd0d3 /scan-tree.c
parentgit: update to 2.0.1 (diff)
downloadcgit-4b91269bdbc21a664cc56c26d6071c630560f2e0.tar.gz
cgit-4b91269bdbc21a664cc56c26d6071c630560f2e0.zip
remove debug fprinf() calls that sneaked in with commit 79c985
Diffstat (limited to 'scan-tree.c')
-rw-r--r--scan-tree.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/scan-tree.c b/scan-tree.c index 87fa0c7..044bcdc 100644 --- a/scan-tree.c +++ b/scan-tree.c
@@ -115,7 +115,6 @@ static void add_repo(const char *base, struct strbuf *path, repo_config_fn fn)
115 else if (rel.len && rel.buf[rel.len - 1] == '/') 115 else if (rel.len && rel.buf[rel.len - 1] == '/')
116 strbuf_setlen(&rel, rel.len - 1); 116 strbuf_setlen(&rel, rel.len - 1);
117 117
118 fprintf(stderr, "add_repo(): %s\n", rel.buf);
119 repo = cgit_add_repo(rel.buf); 118 repo = cgit_add_repo(rel.buf);
120 config_fn = fn; 119 config_fn = fn;
121 if (ctx.cfg.enable_git_config) { 120 if (ctx.cfg.enable_git_config) {
@@ -162,7 +161,6 @@ static void add_repo(const char *base, struct strbuf *path, repo_config_fn fn)
162 *slash = '\0'; 161 *slash = '\0';
163 repo->section = xstrdup(rel.buf); 162 repo->section = xstrdup(rel.buf);
164 *slash = '/'; 163 *slash = '/';
165 fprintf(stderr, "repo->name %s, repo->section %s\n", repo->name, repo->section);
166 if (starts_with(repo->name, repo->section)) { 164 if (starts_with(repo->name, repo->section)) {
167 repo->name += strlen(repo->section); 165 repo->name += strlen(repo->section);
168 if (*repo->name == '/') 166 if (*repo->name == '/')
@@ -186,7 +184,6 @@ static void scan_path(const char *base, const char *path, repo_config_fn fn)
186 size_t pathlen = strlen(path); 184 size_t pathlen = strlen(path);
187 struct stat st; 185 struct stat st;
188 186
189 fprintf(stderr, "scan_path(): %s\n", path);
190 if (!dir) { 187 if (!dir) {
191 fprintf(stderr, "Error opening directory %s: %s (%d)\n", 188 fprintf(stderr, "Error opening directory %s: %s (%d)\n",
192 path, strerror(errno), errno); 189 path, strerror(errno), errno);
@@ -195,7 +192,6 @@ static void scan_path(const char *base, const char *path, repo_config_fn fn)
195 192
196 strbuf_add(&pathbuf, path, strlen(path)); 193 strbuf_add(&pathbuf, path, strlen(path));
197 if (is_git_dir(pathbuf.buf)) { 194 if (is_git_dir(pathbuf.buf)) {
198 fprintf(stderr, "scan_path() is_git_dir: %s\n", path);
199 add_repo(base, &pathbuf, fn); 195 add_repo(base, &pathbuf, fn);
200 goto end; 196 goto end;
201 } 197 }