diff options
Diffstat (limited to 'ui-snapshot.c')
-rw-r--r-- | ui-snapshot.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ui-snapshot.c b/ui-snapshot.c index 901c0c9..8f82119 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c | |||
@@ -98,14 +98,9 @@ const struct cgit_snapshot_format cgit_snapshot_formats[] = { | |||
98 | static const struct cgit_snapshot_format *get_format(const char *filename) | 98 | static const struct cgit_snapshot_format *get_format(const char *filename) |
99 | { | 99 | { |
100 | const struct cgit_snapshot_format *fmt; | 100 | const struct cgit_snapshot_format *fmt; |
101 | int fl, sl; | ||
102 | 101 | ||
103 | fl = strlen(filename); | ||
104 | for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { | 102 | for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { |
105 | sl = strlen(fmt->suffix); | 103 | if (!suffixcmp(filename, fmt->suffix)) |
106 | if (sl >= fl) | ||
107 | continue; | ||
108 | if (!strcmp(fmt->suffix, filename + fl - sl)) | ||
109 | return fmt; | 104 | return fmt; |
110 | } | 105 | } |
111 | return NULL; | 106 | return NULL; |