diff options
author | David Shaw <[email protected]> | 2003-11-10 04:33:13 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-11-10 04:33:13 +0000 |
commit | 5028edd538d966ff015274fd6150c82ea180842d (patch) | |
tree | a8a9919dc891ea200d1a7ca3d13cc18b094f6bed /g10/g10.c | |
parent | * pkclist.c (build_pk_list): When adding recipients interactively, allow (diff) | |
download | gnupg-5028edd538d966ff015274fd6150c82ea180842d.tar.gz gnupg-5028edd538d966ff015274fd6150c82ea180842d.zip |
* mainproc.c (proc_symkey_enc): Don't show algorithm information when
--quiet is set. Suggested by Duncan Harris. Also don't fail with BUG()
when processing a --symmetric message with a cipher we don't have.
* g10.c: Alias --personal-xxx-prefs to --personal-xxx-preferences.
Diffstat (limited to '')
-rw-r--r-- | g10/g10.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -630,6 +630,11 @@ static ARGPARSE_OPTS opts[] = { { oPersonalCipherPreferences, "personal-cipher-preferences", 2, "@"}, { oPersonalDigestPreferences, "personal-digest-preferences", 2, "@"}, { oPersonalCompressPreferences, "personal-compress-preferences", 2, "@"}, + /* Aliases. I constantly mistype these, and assume other people + do as well. */ + { oPersonalCipherPreferences, "personal-cipher-prefs", 2, "@"}, + { oPersonalDigestPreferences, "personal-digest-prefs", 2, "@"}, + { oPersonalCompressPreferences, "personal-compress-prefs", 2, "@"}, { oEmuMDEncodeBug, "emulate-md-encode-bug", 0, "@"}, { oDisplay, "display", 2, "@" }, { oTTYname, "ttyname", 2, "@" }, |