X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fbuffer.c;h=4a980b5da373725385db98a481aa66c38a77541a;hb=debc485626c0c143731b0ca229d18b48085bb2ef;hp=e52b1b10fde6bf2a5250d71c47c4bcb4bc4d641d;hpb=6689e8db4f53f6a0bed3d1bc4ed12d31eaa3bf51;p=chaz%2Ftar diff --git a/src/buffer.c b/src/buffer.c index e52b1b1..4a980b5 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -103,7 +103,7 @@ bool write_archive_to_stdout; /* Multi-volume tracking support */ -/* When creating a multi-volume archive, each `bufmap' represents +/* When creating a multi-volume archive, each 'bufmap' represents a member stored (perhaps partly) in the current record buffer. After flushing the record to the output media, all bufmaps that represent fully written members are removed from the list, then @@ -337,23 +337,23 @@ const char * first_decompress_program (int *pstate) { struct zip_program const *zp; - + if (use_compress_program_option) return use_compress_program_option; if (archive_compression_type == ct_none) return NULL; - *pstate = 0; + *pstate = 0; zp = find_zip_program (archive_compression_type, pstate); return zp ? zp->program : NULL; } - + const char * next_decompress_program (int *pstate) { struct zip_program const *zp; - + if (use_compress_program_option) return NULL; zp = find_zip_program (archive_compression_type, pstate);