diff options
author | Werner Koch <[email protected]> | 2019-10-12 10:32:43 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2019-10-12 10:33:33 +0000 |
commit | beeab41e47d350f6c691e1aca5fa1242b3c7a410 (patch) | |
tree | 09f35eb42bb8627cf67a77d2776a96ccd94beeb3 | |
parent | gpg: Be prepared for chosen-prefix SHA-1 collisions in key signatures. (diff) | |
download | gnupg-beeab41e47d350f6c691e1aca5fa1242b3c7a410.tar.gz gnupg-beeab41e47d350f6c691e1aca5fa1242b3c7a410.zip |
doc: Fix c+p bug in the examples for --import-filter.
--
Reported-by: Steve McIntyre
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | doc/gpg.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/gpg.texi b/doc/gpg.texi index d021265b1..93bb875bb 100644 --- a/doc/gpg.texi +++ b/doc/gpg.texi @@ -3818,10 +3818,10 @@ the same type. For example the four options in this example: @c man:.RS @example - --import-option keep-uid="uid =~ Alfa" - --import-option keep-uid="&& uid !~ Test" - --import-option keep-uid="|| uid =~ Alpha" - --import-option keep-uid="uid !~ Test" + --import-filter keep-uid="uid =~ Alfa" + --import-filter keep-uid="&& uid !~ Test" + --import-filter keep-uid="|| uid =~ Alpha" + --import-filter keep-uid="uid !~ Test" @end example @c man:.RE @@ -3830,7 +3830,7 @@ which is equivalent to @c man:.RS @example - --import-option \ + --import-filter \ keep-uid="uid =~ Alfa" && uid !~ Test" || uid =~ Alpha" && "uid !~ Test" @end example @c man:.RE |