diff options
-rw-r--r-- | usr.bin/du/du.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index 51f48360e53..95b409cbfb2 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -1,4 +1,4 @@ -/* $OpenBSD: du.c,v 1.30 2015/06/25 02:04:08 uebayasi Exp $ */ +/* $OpenBSD: du.c,v 1.31 2015/10/10 05:32:52 deraadt Exp $ */ /* $NetBSD: du.c,v 1.11 1996/10/18 07:20:35 thorpej Exp $ */ /* @@ -66,6 +66,9 @@ main(int argc, char *argv[]) char **save; const char *errstr; + if (pledge("stdio rpath", NULL) == -1) + err(1, "pledge"); + save = argv; Hflag = Lflag = cflag = hflag = kflag = listfiles = 0; totalblocks = 0; |