summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-10-13 15:12:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-10-13 15:12:54 +0000
commit46be23da5c07e8983c12b5bd0965f8f359568c7a (patch)
treea7eedc0b44c3ad7c9a0a35f7480e902b3aea4e03
parent998e96f837e0d9d58d8311b2dce23d03c11ae5a0 (diff)
pledge "stdio rpath wpath cpath", full path handling to satisfy dbopen()
-rw-r--r--usr.sbin/netgroup_mkdb/netgroup_mkdb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/netgroup_mkdb/netgroup_mkdb.c b/usr.sbin/netgroup_mkdb/netgroup_mkdb.c
index f370acabd0c..adfb4d95f5c 100644
--- a/usr.sbin/netgroup_mkdb/netgroup_mkdb.c
+++ b/usr.sbin/netgroup_mkdb/netgroup_mkdb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: netgroup_mkdb.c,v 1.19 2015/09/10 18:59:34 deraadt Exp $ */
+/* $OpenBSD: netgroup_mkdb.c,v 1.20 2015/10/13 15:12:53 deraadt Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas
@@ -96,6 +96,8 @@ main(int argc, char *argv[])
DB *db, *ndb, *hdb, *udb;
int ch;
+ if (pledge("stdio rpath wpath cpath", NULL) == -1)
+ err(1, "pledge");
while ((ch = getopt(argc, argv, "do:")) != -1)
switch (ch) {