From: benno Date: Sat, 10 Oct 2015 00:19:52 +0000 (+0000) Subject: pledge("stdio route") needed here, because ipv6 X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=becb4c8c00e14505f26ee0ecf5489ecb78050ddf;p=openbsd pledge("stdio route") needed here, because ipv6 ok deraadt@ --- diff --git a/usr.sbin/ospf6ctl/ospf6ctl.c b/usr.sbin/ospf6ctl/ospf6ctl.c index d6fa077ba43..531bc2a6916 100644 --- a/usr.sbin/ospf6ctl/ospf6ctl.c +++ b/usr.sbin/ospf6ctl/ospf6ctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf6ctl.c,v 1.40 2015/09/27 17:31:50 stsp Exp $ */ +/* $OpenBSD: ospf6ctl.c,v 1.41 2015/10/10 00:19:52 benno 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 route", NULL) == -1) + err(1, "pledge"); + if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL) err(1, NULL); imsg_init(ibuf, ctl_sock);