mirror of
https://git.zx2c4.com/cgit
synced 2025-08-31 06:59:28 +02:00
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:
parent
30a378b571
commit
2f8648ff7f
5 changed files with 17 additions and 10 deletions
2
shared.c
2
shared.c
|
@ -400,7 +400,7 @@ int cgit_parse_snapshots_mask(const char *str)
|
|||
for (f = cgit_snapshot_formats; f->suffix; f++) {
|
||||
if (!strcmp(item->string, f->suffix) ||
|
||||
!strcmp(item->string, f->suffix + 1)) {
|
||||
rv |= f->bit;
|
||||
rv |= cgit_snapshot_format_bit(f);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue