From b4d25a741c58200e1b48c5108140aedf8c1acccc Mon Sep 17 00:00:00 2001 From: Michihiro NAKAJIMA Date: Wed, 8 Feb 2012 05:09:25 +0900 Subject: Rename archive_matching to archive_match. --- libarchive_fe/matching.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libarchive_fe') diff --git a/libarchive_fe/matching.c b/libarchive_fe/matching.c index 3af5e658..f416eae7 100644 --- a/libarchive_fe/matching.c +++ b/libarchive_fe/matching.c @@ -48,7 +48,7 @@ lafe_exclude_from_file(struct archive *matching, const char *pathname) lr = lafe_line_reader(pathname, 0); while ((p = lafe_line_reader_next(lr)) != NULL) { - ret = archive_matching_exclude_pattern(matching, p); + ret = archive_match_exclude_pattern(matching, p); if (ret == ARCHIVE_FATAL) lafe_errc(1, errno, "Out of memory"); } @@ -66,7 +66,7 @@ lafe_include_from_file(struct archive *matching, const char *pathname, lr = lafe_line_reader(pathname, nullSeparator); while ((p = lafe_line_reader_next(lr)) != NULL) { - ret = archive_matching_include_pattern(matching, p); + ret = archive_match_include_pattern(matching, p); if (ret == ARCHIVE_FATAL) lafe_errc(1, errno, "Out of memory"); } -- cgit v1.2.1