diff options
author | 2010-05-13 22:51:56 +0000 | |
---|---|---|
committer | 2010-05-13 22:51:56 +0000 | |
commit | 7cfdfd158ea40b13a98b1b7c1ace1ec935a74d78 (patch) | |
tree | 6bc079190ba6ce17d14023f08084c334b4e02ff6 | |
parent | sync (diff) | |
download | wireguard-openbsd-7cfdfd158ea40b13a98b1b7c1ace1ec935a74d78.tar.xz wireguard-openbsd-7cfdfd158ea40b13a98b1b7c1ace1ec935a74d78.zip |
typo: colision->collision
-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; |