summaryrefslogtreecommitdiff
path: root/usr.sbin/ac
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-10-12 02:02:01 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-10-12 02:02:01 +0000
commitfeb137bbf089f50f134dccc29ff5538c9686e0cb (patch)
tree2ed9fe6d059f8dd900659ca43c0cfce3f4c3e8b2 /usr.sbin/ac
parent6c21dbac88bde2b8b85f851cb93ea89a3fa035ec (diff)
pledge to only use "stdio rpath"; rpath is for readig the wtmp files.
ok doug
Diffstat (limited to 'usr.sbin/ac')
-rw-r--r--usr.sbin/ac/ac.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/ac/ac.c b/usr.sbin/ac/ac.c
index d1628e62b6f..3e9da2f9f5d 100644
--- a/usr.sbin/ac/ac.c
+++ b/usr.sbin/ac/ac.c
@@ -200,6 +200,9 @@ main(int argc, char *argv[])
FILE *fp;
int c;
+ if (pledge("stdio rpath", NULL) == -1)
+ err(1, "pledge");
+
fp = NULL;
while ((c = getopt(argc, argv, "Ddpt:w:")) != -1) {
switch (c) {