diff options
author | Lukas Fleischer | 2014-01-10 12:44:35 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2014-01-10 17:01:29 +0100 |
commit | 36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1 (patch) | |
tree | 06a5bc8163bde09074e18ad5e66deb35ebb136c6 /ui-shared.c | |
parent | d523dacc3b1c93bb186cdd0ddb5e721162aa927e (diff) | |
download | cgit-36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1.tar.gz cgit-36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1.tar.bz2 cgit-36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1.zip |
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 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index d32852f..2c12de7 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -120,7 +120,7 @@ const char *cgit_repobasename(const char *reponame) | |||
120 | /* strip trailing slashes */ | 120 | /* strip trailing slashes */ |
121 | while (p && rvbuf[p] == '/') rvbuf[p--] = 0; | 121 | while (p && rvbuf[p] == '/') rvbuf[p--] = 0; |
122 | /* strip trailing .git */ | 122 | /* strip trailing .git */ |
123 | if (p >= 3 && !strncmp(&rvbuf[p-3], ".git", 4)) { | 123 | if (p >= 3 && !prefixcmp(&rvbuf[p-3], ".git")) { |
124 | p -= 3; rvbuf[p--] = 0; | 124 | p -= 3; rvbuf[p--] = 0; |
125 | } | 125 | } |
126 | /* strip more trailing slashes if any */ | 126 | /* strip more trailing slashes if any */ |