diff options
author | 2010-06-28 23:02:07 +0000 | |
---|---|---|
committer | 2010-06-28 23:02:07 +0000 | |
commit | f1f2f7638703ca9808e43fe992b092cd3d1d0a55 (patch) | |
tree | fc1383c4b18d477f600c542407d0ca846e03e0f0 | |
parent | <sys/time.b> is for ftime(), which is just in libcompat and not the kernel, (diff) | |
download | wireguard-openbsd-f1f2f7638703ca9808e43fe992b092cd3d1d0a55.tar.xz wireguard-openbsd-f1f2f7638703ca9808e43fe992b092cd3d1d0a55.zip |
Fix IFADDRDEL imsg error message.
ok claudio@
-rw-r--r-- | usr.sbin/ospfd/ospfe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/ospfe.c b/usr.sbin/ospfd/ospfe.c index 2f4a502c392..8f658565bf3 100644 --- a/usr.sbin/ospfd/ospfe.c +++ b/usr.sbin/ospfd/ospfe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.c,v 1.75 2010/05/26 13:56:08 nicm Exp $ */ +/* $OpenBSD: ospfe.c,v 1.76 2010/06/28 23:02:07 bluhm Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -328,7 +328,7 @@ ospfe_dispatch_main(int fd, short event, void *bula) case IMSG_IFADDRDEL: if (imsg.hdr.len != IMSG_HEADER_SIZE + sizeof(struct ifaddrdel)) - fatalx("IFINFO imsg with wrong len"); + fatalx("IFADDRDEL imsg with wrong len"); ifc = imsg.data; LIST_FOREACH(area, &oeconf->area_list, entry) { |