diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-04 09:45:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-04 09:45:40 +0000 |
commit | 9bad623cb8680397899edd42683cedeba1a9501c (patch) | |
tree | ec336f96ea85d71ae0bcd77a8185d8efc8705088 /sbin/mount | |
parent | da84212fd714cbfcb58034df9dfc81d26a005b90 (diff) |
nice argv[0], please do not bite me
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 771b21d5a9c..37a14d6ea66 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.7 1996/12/03 01:04:44 downsj Exp $ */ +/* $OpenBSD: mount.c,v 1.8 1996/12/04 09:45:39 deraadt Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.7 1996/12/03 01:04:44 downsj Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.8 1996/12/04 09:45:39 deraadt Exp $"; #endif #endif /* not lint */ @@ -302,7 +302,7 @@ mountfs(vfstype, spec, name, flags, options, mntopts, skipmounted) struct statfs sf; pid_t pid; int argc, i, status; - char *optbuf, execname[MAXPATHLEN + 1], mntpath[MAXPATHLEN]; + char *optbuf, execname[MAXPATHLEN], mntpath[MAXPATHLEN]; char mountname[MAXPATHLEN]; if (realpath(name, mntpath) == NULL) { @@ -355,8 +355,11 @@ mountfs(vfstype, spec, name, flags, options, mntopts, skipmounted) if (flags & MNT_UPDATE) optbuf = catopt(optbuf, "update"); + (void)snprintf(mountname, + sizeof(mountname), "mount_%s", vfstype); + argc = 0; - argv[argc++] = vfstype; + argv[argc++] = mountname; mangle(optbuf, &argc, argv); argv[argc++] = spec; argv[argc++] = name; @@ -370,9 +373,9 @@ mountfs(vfstype, spec, name, flags, options, mntopts, skipmounted) return (0); } - switch (pid = vfork()) { + switch (pid = fork()) { case -1: /* Error. */ - warn("vfork"); + warn("fork"); free(optbuf); return (1); case 0: /* Child. */ @@ -381,9 +384,6 @@ mountfs(vfstype, spec, name, flags, options, mntopts, skipmounted) do { (void)snprintf(execname, sizeof(execname), "%s/mount_%s", *edir, vfstype); - (void)snprintf(mountname, - sizeof(mountname), "mount_%s", vfstype); - argv[0] = mountname; execv(execname, (char * const *)argv); if (errno != ENOENT) warn("exec %s for %s", execname, name); |