From: Paul Eggert Date: Mon, 11 Oct 1999 06:56:17 +0000 (+0000) Subject: (update_archive): Fix typo: last two args to dump_file were interchanged. X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=a46a2044364353ae31126aa5108a3010acc0a0b5;hp=51f0c7c36448cb51018feb81a47fb9bb792784c7;p=chaz%2Ftar (update_archive): Fix typo: last two args to dump_file were interchanged. --- diff --git a/src/update.c b/src/update.c index 6cf5274..f4a1a9d 100644 --- a/src/update.c +++ b/src/update.c @@ -192,7 +192,7 @@ update_archive (void) if (subcommand_option == CAT_SUBCOMMAND) append_file (path); else - dump_file (path, (dev_t) 0, 1); + dump_file (path, 1, (dev_t) 0); } }