From: Joerg Sonnenberger Date: Sun, 7 Mar 2010 18:23:57 +0000 (-0500) Subject: Merge r1922: X-Git-Tag: v2.8.2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55f174cf4c7d6edfeb790097956dd40a105e18dc;p=thirdparty%2Flibarchive.git Merge r1922: The second argument for lafe_line_reader has been changed to a boolean in revision 1385, catch up. SVN-Revision: 2023 --- diff --git a/libarchive_fe/matching.c b/libarchive_fe/matching.c index bdfd07b7d..f774ac773 100644 --- a/libarchive_fe/matching.c +++ b/libarchive_fe/matching.c @@ -89,7 +89,7 @@ lafe_exclude_from_file(struct lafe_matching **matching, const char *pathname) const char *p; int ret = 0; - lr = lafe_line_reader(pathname, '\n'); + lr = lafe_line_reader(pathname, 0); while ((p = lafe_line_reader_next(lr)) != NULL) { if (lafe_exclude(matching, p) != 0) ret = -1;