From: florian Date: Wed, 18 Jul 2018 09:10:50 +0000 (+0000) Subject: Don't log_warn on normal conditions, it should be log_debug. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=93fdf396f02d4cc0caa235ad89c0e65d184ee00b;p=openbsd Don't log_warn on normal conditions, it should be log_debug. Pointed out by semarie@ --- diff --git a/usr.sbin/rad/frontend.c b/usr.sbin/rad/frontend.c index c9d2c8e3ddb..b06fa43038c 100644 --- a/usr.sbin/rad/frontend.c +++ b/usr.sbin/rad/frontend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frontend.c,v 1.10 2018/07/15 09:28:21 florian Exp $ */ +/* $OpenBSD: frontend.c,v 1.11 2018/07/18 09:10:50 florian Exp $ */ /* * Copyright (c) 2018 Florian Obser @@ -609,7 +609,7 @@ icmp6_receive(int fd, short events, void *arg) return; } - log_warnx("RA or RS with hop limit of %d from %s on %s", + log_debug("RA or RS with hop limit of %d from %s on %s", *hlimp, inet_ntop(AF_INET6, &icmp6ev.from.sin6_addr, ntopbuf, INET6_ADDRSTRLEN), if_indextoname(if_index, ifnamebuf));