summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-09-22 10:22:50 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-09-22 10:22:50 +0000
commit5f57d24cc167088878e22f34b27427c559744919 (patch)
tree9c5186d94840720a87f0e2edd2fda348c48fab54
parentcda45e0d7b6bb1b0949568dab25c4c00b0ccab0f (diff)
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 ||