| -rw-r--r-- | ui-snapshot.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ui-snapshot.c b/ui-snapshot.c index 8f82119..901c0c9 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c @@ -98,9 +98,14 @@ const struct cgit_snapshot_format cgit_snapshot_formats[] = { static const struct cgit_snapshot_format *get_format(const char *filename) { const struct cgit_snapshot_format *fmt; + int fl, sl; + fl = strlen(filename); for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { - if (!suffixcmp(filename, fmt->suffix)) + sl = strlen(fmt->suffix); + if (sl >= fl) + continue; + if (!strcmp(fmt->suffix, filename + fl - sl)) return fmt; } return NULL; |