From 1f27dca9765c886a72629a655d538c36c6cb0fea Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 20 Jul 1999 19:48:30 +0000 Subject: [PATCH] (decode_options): ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0, for consistency. --- src/tar.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tar.c b/src/tar.c index 04ad22a..1c9786a 100644 --- a/src/tar.c +++ b/src/tar.c @@ -822,7 +822,7 @@ decode_options (int argc, char *const *argv) && g == (gid_t) g) group_option = g; else - ERROR ((TAREXIT_FAILURE, 0, _("Invalid group given on option"))); + FATAL_ERROR ((0, 0, _("Invalid group given on option"))); } break; @@ -831,9 +831,9 @@ decode_options (int argc, char *const *argv) = mode_compile (optarg, MODE_MASK_EQUALS | MODE_MASK_PLUS | MODE_MASK_MINUS); if (mode_option == MODE_INVALID) - ERROR ((TAREXIT_FAILURE, 0, _("Invalid mode given on option"))); + FATAL_ERROR ((0, 0, _("Invalid mode given on option"))); if (mode_option == MODE_MEMORY_EXHAUSTED) - ERROR ((TAREXIT_FAILURE, 0, _("Memory exhausted"))); + FATAL_ERROR ((0, 0, _("Memory exhausted"))); break; case NO_RECURSE_OPTION: @@ -853,7 +853,7 @@ decode_options (int argc, char *const *argv) && u == (uid_t) u) owner_option = u; else - ERROR ((TAREXIT_FAILURE, 0, _("Invalid owner given on option"))); + FATAL_ERROR ((0, 0, _("Invalid owner given on option"))); } break; -- 2.45.2