about summary refs log tree commit diff stats
path: root/ui-shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 1ede2b0..9dde0a3 100644 --- a/ui-shared.c +++ b/ui-shared.c
@@ -128,7 +128,7 @@ const char *cgit_repobasename(const char *reponame)
128 /* strip trailing slashes */ 128 /* strip trailing slashes */
129 while (p && rvbuf[p] == '/') rvbuf[p--] = 0; 129 while (p && rvbuf[p] == '/') rvbuf[p--] = 0;
130 /* strip trailing .git */ 130 /* strip trailing .git */
131 if (p >= 3 && !prefixcmp(&rvbuf[p-3], ".git")) { 131 if (p >= 3 && starts_with(&rvbuf[p-3], ".git")) {
132 p -= 3; rvbuf[p--] = 0; 132 p -= 3; rvbuf[p--] = 0;
133 } 133 }
134 /* strip more trailing slashes if any */ 134 /* strip more trailing slashes if any */