diff options
author | Lukas Fleischer <cgit@cryptocrack.de> | 2014-01-10 12:44:35 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-10 17:01:29 +0100 |
commit | 36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1 (patch) | |
tree | 06a5bc8163bde09074e18ad5e66deb35ebb136c6 /scan-tree.c | |
parent | d523dacc3b1c93bb186cdd0ddb5e721162aa927e (diff) |
Replace most uses of strncmp() with prefixcmp()
This is a preparation for replacing all prefix checks with either
strip_prefix() or starts_with() when Git 1.8.6 is released.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
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) return; strbuf_setlen(path, pathlen); - if (strncmp(base, path->buf, strlen(base))) + if (prefixcmp(path->buf, base)) strbuf_addbuf(&rel, path); else strbuf_addstr(&rel, path->buf + strlen(base) + 1); |