From: Joerg Sonnenberger Date: Sat, 20 Feb 2010 17:06:36 +0000 (-0500) Subject: The second argument for lafe_line_reader has been changed to a boolean X-Git-Tag: v3.0.0a~1241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d99377118a340ca7bb3a84b8d7a5cfd0a78ec942;p=thirdparty%2Flibarchive.git The second argument for lafe_line_reader has been changed to a boolean in revision 1385, catch up. SVN-Revision: 1922 --- 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;