summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_filter_lrzip.c
diff options
context:
space:
mode:
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>2012-10-06 16:21:45 +0900
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>2012-10-06 16:21:45 +0900
commit41df162791f980e992f77b1a2335f773568b70bf (patch)
tree06457fdf4b5e4988500ff89d090d4eb5b8bbd60b /libarchive/archive_read_support_filter_lrzip.c
parent3720a7f118c5a89c2f71ccc463f9733ee0dda13d (diff)
downloadlibarchive-41df162791f980e992f77b1a2335f773568b70bf.tar.gz
Remove __archive_read_program(), use __archive_read_programl() instead.
Diffstat (limited to 'libarchive/archive_read_support_filter_lrzip.c')
-rw-r--r--libarchive/archive_read_support_filter_lrzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/archive_read_support_filter_lrzip.c b/libarchive/archive_read_support_filter_lrzip.c
index c61076f2..d0cf31de 100644
--- a/libarchive/archive_read_support_filter_lrzip.c
+++ b/libarchive/archive_read_support_filter_lrzip.c
@@ -118,7 +118,7 @@ lrzip_bidder_init(struct archive_read_filter *self)
int r;
r = __archive_read_programl(self, "lrzip", "lrzip", "-q", "-d", NULL);
- /* Note: We set the format here even if __archive_read_program()
+ /* Note: We set the format here even if __archive_read_programl()
* above fails. We do, after all, know what the format is
* even if we weren't able to read it. */
self->code = ARCHIVE_COMPRESSION_LRZIP;