]> Dogcows Code - chaz/tar/commitdiff
(decode_options): Fix typo in invoking add_exclude_file.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 11 Aug 1999 13:41:56 +0000 (13:41 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 11 Aug 1999 13:41:56 +0000 (13:41 +0000)
src/tar.c

index fa8b5c9346896dee86e0c3684182e9a36d0ef98d..02737a147885df38f2e020037ed06c12e3617e8f 100644 (file)
--- 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;
 
This page took 0.024718 seconds and 4 git commands to generate.