From: Paul Eggert Date: Mon, 11 Oct 1999 06:56:17 +0000 (+0000) Subject: (dump_file): Fix typo: last two args to dump_file were interchanged. X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=3f3860fd6ae8f77346280cf707ef2f9c57f414ea;p=chaz%2Ftar (dump_file): Fix typo: last two args to dump_file were interchanged. --- diff --git a/src/create.c b/src/create.c index d9ed457..de09f9f 100644 --- a/src/create.c +++ b/src/create.c @@ -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);