summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-04 10:25:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-04 10:25:58 +0000
commit9706e9e8d21a75986cd94cd298597cd8d2fbb77d (patch)
tree772c11570fd2c8fa4fdd63ea0f85248ae9c90858 /sbin
parent328671480a07e808e3e538fd6115e711f0ecd2d2 (diff)
vfork bye bye
Diffstat (limited to 'sbin')
-rw-r--r--sbin/fsck/fsck.c4
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);