From 33a2b1fc06b574ac763b43e047f145604d075696 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 11 Aug 1999 13:41:56 +0000 Subject: [PATCH] (decode_options): Fix typo in invoking add_exclude_file. --- src/tar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tar.c b/src/tar.c index fa8b5c9..02737a1 100644 --- a/src/tar.c +++ b/src/tar.c @@ -798,7 +798,7 @@ decode_options (int argc, char *const *argv) break; case 'X': - if (add_exclude_file (NULL, add_filtered_exclude, optarg, '\n') != 0) + if (add_exclude_file (add_filtered_exclude, NULL, optarg, '\n') != 0) FATAL_ERROR ((0, errno, "%s", optarg)); break; -- 2.45.2