about summary refs log tree commit diff stats
path: root/shared.c
diff options
context:
space:
mode:
authorChristian Hesse2018-06-11 08:26:59 +0200
committerJason A. Donenfeld2018-06-27 18:13:00 +0200
commit2f8648ff7f5c7119ab035c134504f04eefe068fb (patch)
tree8fc7db6324b6483939cdfcf201793866877a5d92 /shared.c
parentsnapshot: support special value 'all' to enable all formats (diff)
downloadcgit-2f8648ff7f5c7119ab035c134504f04eefe068fb.tar.gz
cgit-2f8648ff7f5c7119ab035c134504f04eefe068fb.zip
snapshot: strip bit from struct cgit_snapshot_format
We had a static bit value in struct cgit_snapshot_format. We do not rely
on it and things can be calculated on the fly. So strip it.

Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared.c b/shared.c index 0a11e68..d59ae7e 100644 --- a/shared.c +++ b/shared.c
@@ -400,7 +400,7 @@ int cgit_parse_snapshots_mask(const char *str)
400 for (f = cgit_snapshot_formats; f->suffix; f++) { 400 for (f = cgit_snapshot_formats; f->suffix; f++) {
401 if (!strcmp(item->string, f->suffix) || 401 if (!strcmp(item->string, f->suffix) ||
402 !strcmp(item->string, f->suffix + 1)) { 402 !strcmp(item->string, f->suffix + 1)) {
403 rv |= f->bit; 403 rv |= cgit_snapshot_format_bit(f);
404 break; 404 break;
405 } 405 }
406 } 406 }