diff options
-rw-r--r-- | sbin/mount/mount.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 4a9b6052fb5..b868dbd8b58 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.60 2015/01/16 06:39:59 deraadt Exp $ */ +/* $OpenBSD: mount.c,v 1.61 2015/11/23 23:26:59 deraadt Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -108,6 +108,9 @@ main(int argc, char * const argv[]) int all, ch, forceall, i, mntsize, rval, new; char *options, mntpath[PATH_MAX]; + if (pledge("stdio rpath disklabel proc exec", NULL) == -1) + err(1, "pledge"); + all = forceall = 0; options = NULL; vfstype = "ffs"; |