diff options
Diffstat (limited to 'scan-tree.c')
-rw-r--r-- | scan-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scan-tree.c b/scan-tree.c index 1a2ea87..49de658 100644 --- a/scan-tree.c +++ b/scan-tree.c | |||
@@ -105,7 +105,7 @@ static void add_repo(const char *base, struct strbuf *path, repo_config_fn fn) | |||
105 | return; | 105 | return; |
106 | strbuf_setlen(path, pathlen); | 106 | strbuf_setlen(path, pathlen); |
107 | 107 | ||
108 | if (strncmp(base, path->buf, strlen(base))) | 108 | if (prefixcmp(path->buf, base)) |
109 | strbuf_addbuf(&rel, path); | 109 | strbuf_addbuf(&rel, path); |
110 | else | 110 | else |
111 | strbuf_addstr(&rel, path->buf + strlen(base) + 1); | 111 | strbuf_addstr(&rel, path->buf + strlen(base) + 1); |