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-bz2.c (init_uncompress): Rename

--bzip2-compress-lowmem to --bzip2-decompress-lowmem since it applies to
decompression, not compression.
This commit is contained in:
David Shaw 2004-03-25 22:43:51 +00:00
parent 618779fec2
commit 80c8b0c3a4
4 changed files with 14 additions and 8 deletions

View file

@ -1,5 +1,5 @@
/* compress.c - bzip2 compress filter
* Copyright (C) 2003 Free Software Foundation, Inc.
* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@ -101,7 +101,7 @@ init_uncompress( compress_filter_context_t *zfx, bz_stream *bzs )
{
int rc;
if((rc=BZ2_bzDecompressInit(bzs,0,opt.bz2_compress_lowmem))!=BZ_OK)
if((rc=BZ2_bzDecompressInit(bzs,0,opt.bz2_decompress_lowmem))!=BZ_OK)
log_fatal("bz2lib problem: %d\n",rc);
zfx->inbufsize = 2048;