diff options
author | 2010-05-12 13:31:35 +0000 | |
---|---|---|
committer | 2010-05-12 13:31:35 +0000 | |
commit | b9ccbcada09f04cbe4de382c96b38404d3dba703 (patch) | |
tree | c00a30d3e96b5bff6fa09f75278ec06b9901eab3 | |
parent | Fix includes. Diffy by Remco (remco at d-compu dyndns org) (diff) | |
download | wireguard-openbsd-b9ccbcada09f04cbe4de382c96b38404d3dba703.tar.xz wireguard-openbsd-b9ccbcada09f04cbe4de382c96b38404d3dba703.zip |
Make sure there is a difference in the log of non-fatal and fatal
notifications.
-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 8b1c1edba94..286acd1df17 100644 --- a/usr.sbin/ldpd/notification.c +++ b/usr.sbin/ldpd/notification.c @@ -1,4 +1,4 @@ -/* $OpenBSD: notification.c,v 1.4 2010/04/15 15:44:37 claudio Exp $ */ +/* $OpenBSD: notification.c,v 1.5 2010/05/12 13:31:35 claudio Exp $ */ /* * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org> @@ -108,8 +108,8 @@ recv_notification(struct nbr *nbr, char *buf, u_int16_t len) inet_ntoa(nbr->id), notification_name(ntohl(st->status_code))); else - log_debug("recieved notification from neighbor %s: %s", - inet_ntoa(nbr->id), + log_debug("recieved non-fatal notification from neighbor " + "%s: %s", inet_ntoa(nbr->id), notification_name(ntohl(st->status_code))); if (st->status_code & htonl(STATUS_FATAL)) { |