diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-01-20 23:12:34 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-01-20 23:12:34 +0000 |
commit | 84455a80d453fbd2b1c1cdfb87654bd62d24263c (patch) | |
tree | c1d6b4469205ec0885b0910d7b32fee5dd0b07cc /usr.sbin/ldpd/notification.c | |
parent | e8be0d63e8b997b1a130850434f8ee1fe168b746 (diff) |
- tyop, recieve -> receive
ok sthen@
Diffstat (limited to 'usr.sbin/ldpd/notification.c')
-rw-r--r-- | usr.sbin/ldpd/notification.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ldpd/notification.c b/usr.sbin/ldpd/notification.c index 0c9b1b06166..d7f763a1cd2 100644 --- a/usr.sbin/ldpd/notification.c +++ b/usr.sbin/ldpd/notification.c @@ -1,4 +1,4 @@ -/* $OpenBSD: notification.c,v 1.8 2010/11/04 09:52:16 claudio Exp $ */ +/* $OpenBSD: notification.c,v 1.9 2011/01/20 23:12:33 jasper Exp $ */ /* * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org> @@ -105,11 +105,11 @@ recv_notification(struct nbr *nbr, char *buf, u_int16_t len) /* TODO optional parameters: ext status, returned PDU and msg */ if (st.status_code & htonl(STATUS_FATAL)) - log_warnx("recieved notification from neighbor %s: %s", + log_warnx("received notification from neighbor %s: %s", inet_ntoa(nbr->id), notification_name(ntohl(st.status_code))); else - log_debug("recieved non-fatal notification from neighbor " + log_debug("received non-fatal notification from neighbor " "%s: %s", inet_ntoa(nbr->id), notification_name(ntohl(st.status_code))); |