diff options
Diffstat (limited to 'ui-snapshot.c')
-rw-r--r-- | ui-snapshot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-snapshot.c b/ui-snapshot.c index 3107b05..ea77eb4 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c | |||
@@ -99,7 +99,7 @@ static const struct cgit_snapshot_format *get_format(const char *filename) | |||
99 | const struct cgit_snapshot_format *fmt; | 99 | const struct cgit_snapshot_format *fmt; |
100 | 100 | ||
101 | for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { | 101 | for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { |
102 | if (!suffixcmp(filename, fmt->suffix)) | 102 | if (ends_with(filename, fmt->suffix)) |
103 | return fmt; | 103 | return fmt; |
104 | } | 104 | } |
105 | return NULL; | 105 | return NULL; |
@@ -151,7 +151,7 @@ static const char *get_ref_from_filename(const char *url, const char *filename, | |||
151 | goto out; | 151 | goto out; |
152 | 152 | ||
153 | reponame = cgit_repobasename(url); | 153 | reponame = cgit_repobasename(url); |
154 | if (prefixcmp(snapshot.buf, reponame) == 0) { | 154 | if (starts_with(snapshot.buf, reponame)) { |
155 | const char *new_start = snapshot.buf; | 155 | const char *new_start = snapshot.buf; |
156 | new_start += strlen(reponame); | 156 | new_start += strlen(reponame); |
157 | while (new_start && (*new_start == '-' || *new_start == '_')) | 157 | while (new_start && (*new_start == '-' || *new_start == '_')) |