diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2010-06-28 23:02:08 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2010-06-28 23:02:08 +0000 |
commit | e780a94e3f212f0eddee803af28afa52558c1489 (patch) | |
tree | dc744e734d1d5b856aee34ad0fe5b40851408698 | |
parent | 76736c01c8f1639ae55716d86cd16a3b18580fb6 (diff) |
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) { |