1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-22 15:11:41 +02:00

* options.h, g10.c (main), compress-bz2.c (init_uncompress): Add

--bz2-compress-lowmem to set bzlib "small" flag for low memory (but slow)
decompression.
This commit is contained in:
David Shaw 2003-11-18 02:52:35 +00:00
parent 2e4ab6c669
commit dcf747d620
4 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2003-11-17 David Shaw <dshaw@jabberwocky.com>
* options.h, g10.c (main), compress-bz2.c (init_uncompress): Add
--bz2-compress-lowmem to set bzlib "small" flag for low memory
(but slow) decompression.
2003-11-15 David Shaw <dshaw@jabberwocky.com>
* compress.c (init_compress): Remove compress level 10 trick,

View File

@ -100,7 +100,7 @@ init_uncompress( compress_filter_context_t *zfx, bz_stream *bzs )
{
int rc;
if((rc=BZ2_bzDecompressInit(bzs,0,0))!=BZ_OK)
if((rc=BZ2_bzDecompressInit(bzs,0,opt.bz2_compress_lowmem))!=BZ_OK)
log_fatal("bz2lib problem: %d\n",rc);
zfx->inbufsize = 2048;

View File

@ -192,6 +192,7 @@ enum cmd_and_opt_values
oCompressAlgo,
oCompressLevel,
oBZ2CompressLevel,
oBZ2CompressLowmem,
oPasswdFD,
#ifdef __riscos__
oPasswdFile,
@ -423,6 +424,7 @@ static ARGPARSE_OPTS opts[] = {
{ oCompress, NULL, 1, N_("|N|set compress level N (0 disables)") },
{ oCompressLevel, "compress-level", 1, "@" },
{ oBZ2CompressLevel, "bzip2-compress-level", 1, "@" },
{ oBZ2CompressLowmem, "bzip2-compress-lowmem", 0, "@" },
{ oTextmodeShort, NULL, 0, "@"},
{ oTextmode, "textmode", 0, N_("use canonical text mode")},
{ oNoTextmode, "no-textmode", 0, "@"},
@ -1790,6 +1792,7 @@ main( int argc, char **argv )
break;
case oCompressLevel: opt.compress_level = pargs.r.ret_int; break;
case oBZ2CompressLevel: opt.bz2_compress_level = pargs.r.ret_int; break;
case oBZ2CompressLowmem: opt.bz2_compress_lowmem=1; break;
case oPasswdFD:
pwfd = iobuf_translate_file_handle (pargs.r.ret_int, 0);
opt.use_agent = 0;

View File

@ -70,6 +70,7 @@ struct {
int compress_algo;
int compress_level;
int bz2_compress_level;
int bz2_compress_lowmem;
const char *def_secret_key;
char *def_recipient;
int def_recipient_self;