diff options
| author | Werner Koch <[email protected]> | 2019-05-17 11:40:24 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2019-05-17 11:40:24 +0000 |
| commit | 386bacd9741639d7f5e83c81628d3cad78407197 (patch) | |
| tree | b2b4e5c69c837a69eab9ff001a839cbf6e4f3678 /g10/options.h | |
| parent | gpg: Improve the photo image viewer selection. (diff) | |
| download | gnupg-386bacd9741639d7f5e83c81628d3cad78407197.tar.gz gnupg-386bacd9741639d7f5e83c81628d3cad78407197.zip | |
gpg: Fix using --decrypt along with --use-embedded-filename.
* g10/options.h (opt): Add flags.dummy_outfile.
* g10/decrypt.c (decrypt_message): Set this global flag instead of the
fucntion local flag.
* g10/plaintext.c (get_output_file): Ignore opt.output if that was
used as a dummy option aslong with --use-embedded-filename.
--
The problem here was that an explicit specified --decrypt, as
meanwhile suggested, did not work with that dangerous
--use-embedded-filename. In contrast it worked when gpg decrypted as
a side-effect of parsing the data.
GnuPG-bug-id: 4500
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/options.h')
| -rw-r--r-- | g10/options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/options.h b/g10/options.h index 8adf09f08..b26cea0db 100644 --- a/g10/options.h +++ b/g10/options.h @@ -249,6 +249,8 @@ struct unsigned int disable_signer_uid:1; /* Flag to enable experimental features from RFC4880bis. */ unsigned int rfc4880bis:1; + /* Hack: --output is not given but OUTFILE was temporary set to "-". */ + unsigned int dummy_outfile:1; } flags; /* Linked list of ways to find a key if the key isn't on the local |
