From d4c1cf2290b334cfd80f955f9b0574bcb200be84 Mon Sep 17 00:00:00 2001 From: deraadt Date: Sat, 10 Oct 2015 05:32:52 +0000 Subject: [PATCH] pledge to only use "stdio rpath"; ok doug --- usr.bin/du/du.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- 2.20.1