From: deraadt Date: Fri, 9 Oct 2015 23:33:54 +0000 (+0000) Subject: can use pledge "stdio"; ok benno X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=68598ea0c28f9c4dc82c9e71a7fd249119207b0d;p=openbsd can use pledge "stdio"; ok benno --- diff --git a/usr.sbin/ospfctl/ospfctl.c b/usr.sbin/ospfctl/ospfctl.c index 7a4408abd3a..375615f14c9 100644 --- a/usr.sbin/ospfctl/ospfctl.c +++ b/usr.sbin/ospfctl/ospfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfctl.c,v 1.60 2015/09/27 17:31:50 stsp Exp $ */ +/* $OpenBSD: ospfctl.c,v 1.61 2015/10/09 23:33:54 deraadt Exp $ */ /* * Copyright (c) 2005 Claudio Jeker @@ -124,6 +124,9 @@ main(int argc, char *argv[]) if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) err(1, "connect: %s", sockname); + if (pledge("stdio", NULL) == -1) + err(1, "pledge"); + if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL) err(1, NULL); imsg_init(ibuf, ctl_sock);