From f0c6dc373520cd08ad9e68baa2a940021a48e853 Mon Sep 17 00:00:00 2001 From: renato Date: Sat, 10 Oct 2015 05:06:00 +0000 Subject: eigrpctl pledges to use stdio and route. ok deraadt --- usr.sbin/eigrpctl/eigrpctl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.sbin/eigrpctl') diff --git a/usr.sbin/eigrpctl/eigrpctl.c b/usr.sbin/eigrpctl/eigrpctl.c index 1810dbd1047..98f0bd2826c 100644 --- a/usr.sbin/eigrpctl/eigrpctl.c +++ b/usr.sbin/eigrpctl/eigrpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eigrpctl.c,v 1.1 2015/10/02 04:31:52 renato Exp $ */ +/* $OpenBSD: eigrpctl.c,v 1.2 2015/10/10 05:06:00 renato Exp $ */ /* * Copyright (c) 2015 Renato Westphal @@ -97,6 +97,9 @@ main(int argc, char *argv[]) if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) err(1, "connect: %s", EIGRPD_SOCKET); + if (pledge("stdio route", NULL) == -1) + err(1, "tame"); + if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL) err(1, NULL); imsg_init(ibuf, ctl_sock); -- cgit v1.2.3-59-g8ed1b