]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix comments.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Tue, 4 May 2010 14:41:15 +0000 (10:41 -0400)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Tue, 4 May 2010 14:41:15 +0000 (10:41 -0400)
SVN-Revision: 2369

libarchive/archive_read_support_compression_xz.c

index 9b3450cf10103424dc21b3253b61759795f7985c..6159cb200a43141ae5aa672fa923ed5596ca4aa0 100644 (file)
@@ -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 *);