summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhshoexer <hshoexer@openbsd.org>2006-09-22 10:22:49 +0000
committerhshoexer <hshoexer@openbsd.org>2006-09-22 10:22:49 +0000
commit5e451f756b358cf8201464d3ffbffe619f30cf0f (patch)
treeb1711eb150f5c6b9f3becf1edbae84b04e3f9064
parentFill September (diff)
downloadwireguard-openbsd-5e451f756b358cf8201464d3ffbffe619f30cf0f.tar.xz
wireguard-openbsd-5e451f756b358cf8201464d3ffbffe619f30cf0f.zip
typo in err(); from bret.lambert@gmail.com, thanks!
-rw-r--r--sbin/ipsecctl/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y
index 791cd3c3ba2..4734ecfe2f3 100644
--- a/sbin/ipsecctl/parse.y
+++ b/sbin/ipsecctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.108 2006/06/18 18:18:01 hshoexer Exp $ */
+/* $OpenBSD: parse.y,v 1.109 2006/09/22 10:22:49 hshoexer Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -1459,7 +1459,7 @@ ifa_load(void)
struct ipsec_addr_wrap *n = NULL, *h = NULL;
if (getifaddrs(&ifap) < 0)
- err(1, "ifa_load: getiffaddrs");
+ err(1, "ifa_load: getifaddrs");
for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
if (!(ifa->ifa_addr->sa_family == AF_INET ||