summaryrefslogtreecommitdiff
path: root/libarchive_fe
diff options
context:
space:
mode:
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>2012-02-08 05:09:25 +0900
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>2012-02-08 05:09:25 +0900
commitb4d25a741c58200e1b48c5108140aedf8c1acccc (patch)
tree5b6cd2b0853bf904d91040bbc6976d1ef315da14 /libarchive_fe
parentc5356170ba6ae487ea7a1c80bb6d433eaf7715ec (diff)
downloadlibarchive-b4d25a741c58200e1b48c5108140aedf8c1acccc.tar.gz
Rename archive_matching to archive_match.
Diffstat (limited to 'libarchive_fe')
-rw-r--r--libarchive_fe/matching.c4
1 files changed, 2 insertions, 2 deletions
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");
}