From e8007fe7371b835775288aea1c3195c9d0533862 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 18 Feb 2025 12:15:15 +0900 Subject: [PATCH] Update info on `--blacklist-contains` --- README.md | 2 +- src/parser.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fd0b2e0..0eaab95 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ API calls. --whitelist-contains : Whitelist entries to contain "", specify multiple times to require multiple "" entries at once. --whitelist-begins-with : Whitelist entries to start with "", specify multiple times to allow different entries to start with different "" entries. --whitelist-ends-with : Whitelist entries to end with "", specify multiple times to allow different entries to end with different "" entries. - --blacklist-contains : blacklist entries that contains "", specify multiple times to deny multiple "" entries at once. + --blacklist-contains : blacklist entries that contains "", specify multiple times to deny entries that contain all the specified ""s. --blacklist-begins-with : blacklist entries that starts with "", specify multiple times to deny multiple entries starting with different "" entries. --blacklist-ends-with : blacklist entries that ends with "", specify multiple times to deny multiple entries ending with different "" entries. --wb-case-insensitive : Makes white/black-list checking case insensitive. diff --git a/src/parser.c b/src/parser.c index b5c2311..7a52ccd 100644 --- a/src/parser.c +++ b/src/parser.c @@ -257,8 +257,8 @@ void simple_archiver_print_usage(void) { " with different \"\" entries.\n"); fprintf(stderr, "--blacklist-contains : blacklist entries that contains " - "\"\", specify multiple times to deny multiple \"\" " - "entries at once.\n"); + "\"\", specify multiple times to deny entries that contain all" + " the specified \"\"s.\n"); fprintf(stderr, "--blacklist-begins-with : blacklist entries that starts with " "\"\", specify multiple times to deny multiple entries " -- 2.49.0