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>
This commit is contained in:

committed by
Jason A. Donenfeld

parent
30a378b571
commit
2f8648ff7f
2
cgit.c
2
cgit.c
@ -765,7 +765,7 @@ static char *build_snapshot_setting(int bitmap)
|
||||
struct strbuf result = STRBUF_INIT;
|
||||
|
||||
for (f = cgit_snapshot_formats; f->suffix; f++) {
|
||||
if (f->bit & bitmap) {
|
||||
if (cgit_snapshot_format_bit(f) & bitmap) {
|
||||
if (result.len)
|
||||
strbuf_addch(&result, ' ');
|
||||
strbuf_addstr(&result, f->suffix);
|
||||
|
Reference in New Issue
Block a user