From: Paul Eggert Date: Wed, 11 Aug 1999 13:41:56 +0000 (+0000) Subject: (decode_options): Fix typo in invoking add_exclude_file. X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=33a2b1fc06b574ac763b43e047f145604d075696;p=chaz%2Ftar (decode_options): Fix typo in invoking add_exclude_file. --- 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;