diff options
Diffstat (limited to 'usr.bin/tar/matching.c')
-rw-r--r-- | usr.bin/tar/matching.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tar/matching.c b/usr.bin/tar/matching.c index 184d29a..7ded708 100644 --- a/usr.bin/tar/matching.c +++ b/usr.bin/tar/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; |