all repos — cgit @ e711679618ce704633f09bc10d2fe85291054536

a hyperfast web frontend for git written in c

ui-snapshot.c: Do not reinvent suffixcmp()

Use suffixcmp() from Git instead of reimplementing it. This is a
preparation for moving to ends_with() in Git 1.8.6.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Lukas Fleischer cgit@cryptocrack.de
Fri, 10 Jan 2014 12:44:38 +0100
commit

e711679618ce704633f09bc10d2fe85291054536

parent

f04b8d5c99afdc55178f1a06ff1594f5f0cc4be6

1 files changed, 1 insertions(+), 6 deletions(-)

jump to
M ui-snapshot.cui-snapshot.c

@@ -98,14 +98,9 @@

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++) { - sl = strlen(fmt->suffix); - if (sl >= fl) - continue; - if (!strcmp(fmt->suffix, filename + fl - sl)) + if (!suffixcmp(filename, fmt->suffix)) return fmt; } return NULL;