diff options
Diffstat (limited to 'shared.c')
-rw-r--r-- | shared.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -390,6 +390,9 @@ int cgit_parse_snapshots_mask(const char *str) | |||
390 | if (atoi(str)) | 390 | if (atoi(str)) |
391 | return 1; | 391 | return 1; |
392 | 392 | ||
393 | if (strcmp(str, "all") == 0) | ||
394 | return INT_MAX; | ||
395 | |||
393 | string_list_split(&tokens, str, ' ', -1); | 396 | string_list_split(&tokens, str, ' ', -1); |
394 | string_list_remove_empty_items(&tokens, 0); | 397 | string_list_remove_empty_items(&tokens, 0); |
395 | 398 | ||