aboutsummaryrefslogtreecommitdiffstats
path: root/g10/encode.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--g10/encode.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/g10/encode.c b/g10/encode.c
index 05fdb6ac3..dfde96234 100644
--- a/g10/encode.c
+++ b/g10/encode.c
@@ -332,8 +332,7 @@ encode_simple( const char *filename, int mode, int use_seskey )
{
if (cfx.dek && cfx.dek->use_mdc)
zfx.new_ctb = 1;
- zfx.algo=default_compress_algo();
- iobuf_push_filter( out, compress_filter, &zfx );
+ push_compress_filter(out,&zfx,opt.def_compress_algo);
}
/* do the work */
@@ -627,8 +626,7 @@ encode_crypt( const char *filename, STRLIST remusr, int use_symkey )
{
if (cfx.dek && cfx.dek->use_mdc)
zfx.new_ctb = 1;
- zfx.algo = compr_algo;
- iobuf_push_filter( out, compress_filter, &zfx );
+ push_compress_filter(out,&zfx,compr_algo);
}
}