1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* options.h, g10.c (main), compress.c (init_compress), compress-bz2.c

(init_compress): Add --compress-level and --bzip2-compress-level.  -z sets
them both.  Change various callers.
This commit is contained in:
David Shaw 2003-11-15 22:31:58 +00:00
parent 3257edd4e4
commit 995d712589
9 changed files with 67 additions and 52 deletions

View file

@ -42,7 +42,6 @@ struct {
int quiet;
unsigned debug;
int armor;
int compress;
char *outfile;
int dry_run;
int list_only;
@ -68,7 +67,9 @@ struct {
int disable_mdc;
int def_digest_algo;
int cert_digest_algo;
int def_compress_algo;
int compress_algo;
int compress_level;
int bz2_compress_level;
const char *def_secret_key;
char *def_recipient;
int def_recipient_self;