summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1994-09-22 22:36:57 +0000
committerwollman <wollman@FreeBSD.org>1994-09-22 22:36:57 +0000
commit7970d2e69d705074ede3af9803349ba6cfab1a67 (patch)
tree54a94010b9fdef56f2490600b20ed389debef170 /lib
parent6c462c3384cbaad8e3d22ee05935301c12d7ede6 (diff)
downloadFreeBSD-src-7970d2e69d705074ede3af9803349ba6cfab1a67.zip
FreeBSD-src-7970d2e69d705074ede3af9803349ba6cfab1a67.tar.gz
Pass -q and -u flags to modload so that it shuts up and doesn't leave
modules lying around.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gen/getvfsent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/getvfsent.c b/lib/libc/gen/getvfsent.c
index fb86a84..80b7555 100644
--- a/lib/libc/gen/getvfsent.c
+++ b/lib/libc/gen/getvfsent.c
@@ -233,7 +233,7 @@ vfsload(const char *name)
snprintf(name_mod, sizeof name_mod, "%s%s", name, "_mod");
status = execlp("modload", "modload", "-e", name_mod, "-o", name_mod,
- path, (const char *)0);
+ "-u", "-q", path, (const char *)0);
exit(status ? errno : 0);
}
OpenPOWER on IntegriCloud