summaryrefslogtreecommitdiffstats
path: root/usr.sbin/eigrpctl
diff options
context:
space:
mode:
authorsemarie <semarie@openbsd.org>2015-10-12 12:17:36 +0000
committersemarie <semarie@openbsd.org>2015-10-12 12:17:36 +0000
commit4581b8e573f33f87b71d3e1b40e6070a37ce2129 (patch)
tree7c5795b20e5be527e7318a49003a66b7778b4fc8 /usr.sbin/eigrpctl
parentUnify link state change notification. (diff)
downloadwireguard-openbsd-4581b8e573f33f87b71d3e1b40e6070a37ce2129.tar.xz
wireguard-openbsd-4581b8e573f33f87b71d3e1b40e6070a37ce2129.zip
two leftovers string missed in tame->pledge conversion
ok jsg@
Diffstat (limited to 'usr.sbin/eigrpctl')
-rw-r--r--usr.sbin/eigrpctl/eigrpctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/eigrpctl/eigrpctl.c b/usr.sbin/eigrpctl/eigrpctl.c
index 98f0bd2826c..32693999d6d 100644
--- a/usr.sbin/eigrpctl/eigrpctl.c
+++ b/usr.sbin/eigrpctl/eigrpctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: eigrpctl.c,v 1.2 2015/10/10 05:06:00 renato Exp $ */
+/* $OpenBSD: eigrpctl.c,v 1.3 2015/10/12 12:17:36 semarie Exp $ */
/*
* Copyright (c) 2015 Renato Westphal <renato@openbsd.org>
@@ -98,7 +98,7 @@ main(int argc, char *argv[])
err(1, "connect: %s", EIGRPD_SOCKET);
if (pledge("stdio route", NULL) == -1)
- err(1, "tame");
+ err(1, "pledge");
if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL)
err(1, NULL);