diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-04 10:25:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-04 10:25:58 +0000 |
commit | 9706e9e8d21a75986cd94cd298597cd8d2fbb77d (patch) | |
tree | 772c11570fd2c8fa4fdd63ea0f85248ae9c90858 /sbin | |
parent | 328671480a07e808e3e538fd6115e711f0ecd2d2 (diff) |
vfork bye bye
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsck/fsck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsck/fsck.c b/sbin/fsck/fsck.c index 80e3d12e274..6f8e32d52a7 100644 --- a/sbin/fsck/fsck.c +++ b/sbin/fsck/fsck.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fsck.c,v 1.3 1996/12/04 09:40:41 deraadt Exp $ */ +/* $OpenBSD: fsck.c,v 1.4 1996/12/04 10:25:57 deraadt Exp $ */ /* $NetBSD: fsck.c,v 1.7 1996/10/03 20:06:30 christos Exp $ */ /* @@ -257,7 +257,7 @@ checkfs(vfstype, spec, mntpt, auxarg, pidp) switch (pid = fork()) { case -1: /* Error. */ - warn("vfork"); + warn("fork"); if (optbuf) free(optbuf); return (1); |