summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2019-10-12 12:32:43 +0200
committerWerner Koch <wk@gnupg.org>2019-10-12 12:32:43 +0200
commit926cccef85417b5bc454a3cbf68cfd3214d6ae9f (patch)
tree3ff880490a6827841a9649ab60ebf9c84472f92e /doc
parentgpg: The first key should be in candidates. (diff)
downloadgnupg2-926cccef85417b5bc454a3cbf68cfd3214d6ae9f.tar.xz
gnupg2-926cccef85417b5bc454a3cbf68cfd3214d6ae9f.zip
doc: Fix c+p bug in the examples for --import-filter.
-- Reported-by: Steve McIntyre Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/gpg.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/gpg.texi b/doc/gpg.texi
index fe9e0bfbe..0965a7eb7 100644
--- a/doc/gpg.texi
+++ b/doc/gpg.texi
@@ -3889,10 +3889,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
@@ -3901,7 +3901,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