diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2010-05-13 22:51:57 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2010-05-13 22:51:57 +0000 |
commit | 44a8bd9d080c0eaf3a8ac2dcec60e5eae97f701d (patch) | |
tree | b5beee68cde9b561ada73f2228e1734d9af241d6 /usr.sbin/ospfd/hello.c | |
parent | 7c772c14375cf70346e66cce277f5da72c5e4628 (diff) |
typo: colision->collision
Diffstat (limited to 'usr.sbin/ospfd/hello.c')
-rw-r--r-- | usr.sbin/ospfd/hello.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/hello.c b/usr.sbin/ospfd/hello.c index 0c46bdabea2..5bb3201404c 100644 --- a/usr.sbin/ospfd/hello.c +++ b/usr.sbin/ospfd/hello.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hello.c,v 1.17 2010/02/16 18:10:08 claudio Exp $ */ +/* $OpenBSD: hello.c,v 1.18 2010/05/13 22:51:56 sthen Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -172,7 +172,7 @@ recv_hello(struct iface *iface, struct in_addr src, u_int32_t rtr_id, char *buf, LIST_FOREACH(nbr, &iface->nbr_list, entry) { if (nbr == iface->self) { if (nbr->id.s_addr == rtr_id) { - log_warnx("recv_hello: Router-ID colision on " + log_warnx("recv_hello: Router-ID collision on " "interface %s neighbor IP %s", iface->name, inet_ntoa(src)); return; |