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 | 711fd92fac5695d56728619293a42d528917fa42 (patch) | |
tree | d0cc03953eb40c789da96f521d4e0c9b2abaee65 /ufs-fsck/utilities.c | |
parent | c98140b68e9c197e1cd5a9a46a3ed62ed8c49853 (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 |