diff options
author | julian <julian@FreeBSD.org> | 1998-12-03 02:41:11 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1998-12-03 02:41:11 +0000 |
commit | d77705b6d872e99ed9c1fe6ed1a27d8678cf7117 (patch) | |
tree | 18fe73766fe3f4bc6e842030267ad53b47f58fc5 /sbin/fsck/utilities.c | |
parent | 64959e9518a11a823d591af2ed4f7c4c28ccb71a (diff) | |
download | FreeBSD-src-d77705b6d872e99ed9c1fe6ed1a27d8678cf7117.zip FreeBSD-src-d77705b6d872e99ed9c1fe6ed1a27d8678cf7117.tar.gz |
Cosmetic and documentation changes brought from earlier FreeBSD versions.
(e.g. RCS Id:)
Diffstat (limited to 'sbin/fsck/utilities.c')
-rw-r--r-- | sbin/fsck/utilities.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sbin/fsck/utilities.c b/sbin/fsck/utilities.c index 5ea02b6..b072964 100644 --- a/sbin/fsck/utilities.c +++ b/sbin/fsck/utilities.c @@ -32,11 +32,14 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)utilities.c 8.6 (Berkeley) 5/19/95"; +#endif +static const char rcsid[] = + "$Id: utilities.c,v 1.8 1998/06/15 07:07:21 charnier Exp $"; #endif /* not lint */ #include <sys/param.h> -#include <sys/time.h> #include <ufs/ufs/dinode.h> #include <ufs/ufs/dir.h> @@ -286,7 +289,7 @@ ckfini(markclean) free((char *)bp); } if (bufhead.b_size != cnt) - errx(EEXIT, "Panic: lost %d buffers", bufhead.b_size - cnt); + errx(EEXIT, "panic: lost %d buffers", bufhead.b_size - cnt); pbp = pdirbp = (struct bufarea *)0; if (sblock.fs_clean != markclean) { sblock.fs_clean = markclean; @@ -524,7 +527,6 @@ void catchquit(sig) int sig; { - printf("returning to single-user after filesystem check\n"); returntosingle = 1; (void)signal(SIGQUIT, SIG_DFL); |