]> Dogcows Code - chaz/tar/commitdiff
(dump_file): Fix typo: last two args to dump_file were interchanged.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 11 Oct 1999 06:56:17 +0000 (06:56 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 11 Oct 1999 06:56:17 +0000 (06:56 +0000)
src/create.c

index d9ed4578aa10187a3ea52b3a26c182f8893cf875..de09f9f558c13c93fc6da394048c8e959a6eb5da 100644 (file)
@@ -1165,7 +1165,7 @@ dump_file (char *p, int top_level, dev_t parent_device)
            }
          strcpy (namebuf + len, entry->d_name);
          if (!excluded_name (namebuf))
-           dump_file (namebuf, our_device, 0);
+           dump_file (namebuf, 0, our_device);
        }
 
       closedir (directory);
This page took 0.027808 seconds and 4 git commands to generate.