diff options
author | Werner Koch <[email protected]> | 2014-08-12 08:36:30 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-08-14 07:55:09 +0000 |
commit | 71b55e91f02cdb65a8884892f71c4c7bf8a75247 (patch) | |
tree | 26b7107471109f9b5de96ee8b2360f95477ba7a0 /g10/export.c | |
parent | gpg: Add list-option "show-usage". (diff) | |
download | gnupg-71b55e91f02cdb65a8884892f71c4c7bf8a75247.tar.gz gnupg-71b55e91f02cdb65a8884892f71c4c7bf8a75247.zip |
gpg: Remove --compress-keys and --compress-sigs feature.
* g10/gpg.c (oCompressKeys, oCompressSigs): Remove.
(opts): Turn --compress-keys and --compress-signs in NOPs.
* g10/options.h (opt): Remove fields compress_keys and compress_sigs.
* g10/export.c (do_export): Remove compress_keys feature.
* g10/sign.c (sign_file): Remove compress_sigs feature.
--
These features are disabled in GnuPG since the very early days and
they fulfill no real purpose. For now we keep the command line
options as dummys.
Diffstat (limited to 'g10/export.c')
-rw-r--r-- | g10/export.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/g10/export.c b/g10/export.c index 0aa44f337..6a921c192 100644 --- a/g10/export.c +++ b/g10/export.c @@ -213,8 +213,6 @@ do_export (ctrl_t ctrl, strlist_t users, int secret, unsigned int options ) afx->what = secret? 5 : 1; push_armor_filter (afx, out); } - if ( opt.compress_keys ) - push_compress_filter (out,&zfx,default_compress_algo()); } rc = do_export_stream (ctrl, out, users, secret, NULL, options, &any ); |