diff options
Diffstat (limited to 'sbin/mount_ifs')
-rw-r--r-- | sbin/mount_ifs/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_ifs/mount.c b/sbin/mount_ifs/mount.c index c281cbc..b0d0105 100644 --- a/sbin/mount_ifs/mount.c +++ b/sbin/mount_ifs/mount.c @@ -352,9 +352,9 @@ mountfs(vfstype, spec, name, flags, options, mntopts) return (0); } - switch (pid = vfork()) { + switch (pid = fork()) { case -1: /* Error. */ - warn("vfork"); + warn("fork"); free(optbuf); return (1); case 0: /* Child. */ |