From: deraadt Date: Tue, 13 Oct 2015 15:12:53 +0000 (+0000) Subject: pledge "stdio rpath wpath cpath", full path handling to satisfy dbopen() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=322cc83bfc2a014b73a5cabf3766b8b93608fec2;p=openbsd pledge "stdio rpath wpath cpath", full path handling to satisfy dbopen() --- 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) {