diff options
author | David Shaw <[email protected]> | 2003-11-15 22:31:58 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-11-15 22:31:58 +0000 |
commit | 995d71258998eb6ed80a08cb5ad8c8bd03f13afb (patch) | |
tree | 486e8ad5b1e39f5c2063d82f5555a395be86f4a8 /g10/options.h | |
parent | * encode.c (encode_simple), sign.c (sign_symencrypt_file): Properly use (diff) | |
download | gnupg-995d71258998eb6ed80a08cb5ad8c8bd03f13afb.tar.gz gnupg-995d71258998eb6ed80a08cb5ad8c8bd03f13afb.zip |
* 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.
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/g10/options.h b/g10/options.h index 64799361a..391adc862 100644 --- a/g10/options.h +++ b/g10/options.h @@ -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; |