aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgitrc.5.txt1
-rw-r--r--shared.c3
2 files changed, 0 insertions, 4 deletions
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index 3bfacfa..a9d3d0a 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -429,7 +429,6 @@ snapshots::
Text which specifies the default set of snapshot formats that cgit
generates links for. The value is a space-separated list of zero or
more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip".
- The special value "all" enables all snapshot formats.
Default value: none.
source-filter::
diff --git a/shared.c b/shared.c
index 0a11e68..21ac8f4 100644
--- a/shared.c
+++ b/shared.c
@@ -390,9 +390,6 @@ int cgit_parse_snapshots_mask(const char *str)
if (atoi(str))
return 1;
- if (strcmp(str, "all") == 0)
- return INT_MAX;
-
string_list_split(&tokens, str, ' ', -1);
string_list_remove_empty_items(&tokens, 0);