mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
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.
This commit is contained in:
parent
7d0492075e
commit
71b55e91f0
4 changed files with 8 additions and 18 deletions
|
@ -998,7 +998,7 @@ sign_file (ctrl_t ctrl, strlist_t filenames, int detached, strlist_t locusr,
|
|||
iobuf_push_filter( out, encrypt_filter, &efx );
|
||||
}
|
||||
|
||||
if( opt.compress_algo && !outfile && ( !detached || opt.compress_sigs) )
|
||||
if (opt.compress_algo && !outfile && !detached)
|
||||
{
|
||||
int compr_algo=opt.compress_algo;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue