(decode_options): ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,

for consistency.
This commit is contained in:
Paul Eggert
1999-07-20 19:48:30 +00:00
parent 653e9784d3
commit 1f27dca976

View File

@@ -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;