diff options
author | Werner Koch <wk@gnupg.org> | 2019-10-12 12:32:43 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2019-10-12 12:32:43 +0200 |
commit | 926cccef85417b5bc454a3cbf68cfd3214d6ae9f (patch) | |
tree | 3ff880490a6827841a9649ab60ebf9c84472f92e /doc | |
parent | gpg: The first key should be in candidates. (diff) | |
download | gnupg2-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.texi | 10 |
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 |