commit | 30a378b571c9f826d37c913b32b363f54a8997f4 | [log] [tgz] |
---|---|---|
author | Christian Hesse <mail@eworm.de> | Thu Jun 07 22:01:50 2018 +0200 |
committer | Jason A. Donenfeld <Jason@zx2c4.com> | Wed Jun 27 18:11:19 2018 +0200 |
tree | 20234a287b08ad8fea6d50222f571bb4417a2962 | |
parent | c712d5ac434b9ee8cb4e63a173a2538e1878637f [diff] [blame] |
snapshot: support special value 'all' to enable all formats Signed-off-by: Christian Hesse <mail@eworm.de> Reviewed-by: John Keeping <john@keeping.me.uk>
diff --git a/shared.c b/shared.c index 21ac8f4..0a11e68 100644 --- a/shared.c +++ b/shared.c
@@ -390,6 +390,9 @@ 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);