diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-06-24 14:19:34 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-06-24 14:19:34 +0000 |
commit | e71d6032ca4561ecdd2c776b3e27c5f5ec69d0e0 (patch) | |
tree | a462cc8bb56f936a8375df849bbf9b7e4304fd33 /ufs-fsck/utilities.c | |
parent | 1776c03031f4241f6044b90d485c4999ab52126b (diff) |
(errexit, punt): Exit with status 8 for catastrophic failures.
Diffstat (limited to 'ufs-fsck/utilities.c')
-rw-r--r-- | ufs-fsck/utilities.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ufs-fsck/utilities.c b/ufs-fsck/utilities.c index 65857ac9..34da1e3d 100644 --- a/ufs-fsck/utilities.c +++ b/ufs-fsck/utilities.c @@ -255,7 +255,7 @@ errexit (char *fmt, ...) va_end (args); putchar ('\n'); - exit (1); + exit (8); } static void @@ -271,7 +271,7 @@ punt (char *msg) { problem (0, msg); flush_problems (); - exit (1); + exit (8); } /* If SEVERE is true, and we're in preen mode, then things are too hair to |