From: Michihiro NAKAJIMA Date: Tue, 4 May 2010 14:41:15 +0000 (-0400) Subject: Fix comments. X-Git-Tag: v3.0.0a~1025 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1af1662eb42c40efed9f6a719d088edd693a567c;p=thirdparty%2Flibarchive.git Fix comments. SVN-Revision: 2369 --- diff --git a/libarchive/archive_read_support_compression_xz.c b/libarchive/archive_read_support_compression_xz.c index 9b3450cf1..6159cb200 100644 --- a/libarchive/archive_read_support_compression_xz.c +++ b/libarchive/archive_read_support_compression_xz.c @@ -62,14 +62,14 @@ struct private_data { char eof; /* True = found end of compressed data. */ char in_stream; - /* Following variables is used for lzip only */ + /* Following variables are used for lzip only. */ char lzip_ver; uint32_t crc32; int64_t member_in; int64_t member_out; }; -/* Combined lzma/xz filter */ +/* Combined lzip/lzma/xz filter */ static ssize_t xz_filter_read(struct archive_read_filter *, const void **); static int xz_filter_close(struct archive_read_filter *); static int xz_lzma_bidder_init(struct archive_read_filter *);