From: deraadt Date: Sat, 10 Oct 2015 05:32:52 +0000 (+0000) Subject: pledge to only use "stdio rpath"; ok doug X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d4c1cf2290b334cfd80f955f9b0574bcb200be84;p=openbsd pledge to only use "stdio rpath"; ok doug --- 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;