diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-10 22:11:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-10 22:11:38 +0000 |
commit | 122525248e3be8b4ebae157abbced233ab86a8e8 (patch) | |
tree | 9ffacf63dbba750505f6f7842030d1cc90282ebf /usr.sbin/dvmrpctl/dvmrpctl.c | |
parent | 484f56ceb337fc3db1f4cdee8f2623be7f1eb07d (diff) |
pledge "stdio route"; untested. this has the if_nametoindex() problem as
other *ctl programs using their daemon's log.c, and thus requires "route"
for now. we hope to solve that issue soon.
Diffstat (limited to 'usr.sbin/dvmrpctl/dvmrpctl.c')
-rw-r--r-- | usr.sbin/dvmrpctl/dvmrpctl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/dvmrpctl/dvmrpctl.c b/usr.sbin/dvmrpctl/dvmrpctl.c index 1117eecc6ea..d0ed2d87b7e 100644 --- a/usr.sbin/dvmrpctl/dvmrpctl.c +++ b/usr.sbin/dvmrpctl/dvmrpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dvmrpctl.c,v 1.12 2015/09/27 17:29:45 stsp Exp $ */ +/* $OpenBSD: dvmrpctl.c,v 1.13 2015/10/10 22:11:37 deraadt Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -95,6 +95,9 @@ main(int argc, char *argv[]) if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) err(1, "connect: %s", DVMRPD_SOCKET); + if (pledge("stdio route", NULL) == -1) + err(1, "pledge"); + if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL) fatal(NULL); imsg_init(ibuf, ctl_sock); |