diff options
author | Christian Hesse | 2018-06-11 08:26:59 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2018-06-27 18:13:00 +0200 |
commit | 2f8648ff7f5c7119ab035c134504f04eefe068fb (patch) | |
tree | 8fc7db6324b6483939cdfcf201793866877a5d92 /cgit.c | |
parent | 30a378b571c9f826d37c913b32b363f54a8997f4 (diff) | |
download | cgit-2f8648ff7f5c7119ab035c134504f04eefe068fb.tar.gz cgit-2f8648ff7f5c7119ab035c134504f04eefe068fb.tar.bz2 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 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -765,7 +765,7 @@ static char *build_snapshot_setting(int bitmap) | |||
765 | struct strbuf result = STRBUF_INIT; | 765 | struct strbuf result = STRBUF_INIT; |
766 | 766 | ||
767 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 767 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
768 | if (f->bit & bitmap) { | 768 | if (cgit_snapshot_format_bit(f) & bitmap) { |
769 | if (result.len) | 769 | if (result.len) |
770 | strbuf_addch(&result, ' '); | 770 | strbuf_addch(&result, ' '); |
771 | strbuf_addstr(&result, f->suffix); | 771 | strbuf_addstr(&result, f->suffix); |