summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2019-06-07 11:46:33 +0000
committerflorian <florian@openbsd.org>2019-06-07 11:46:33 +0000
commit3b6c42563ed116d5c56a3ff33a59cb4e1fb540d3 (patch)
treeb985a973204b3c1e58a42a4d0cc17059851251e8
parentfix print not specified process. (diff)
downloadwireguard-openbsd-3b6c42563ed116d5c56a3ff33a59cb4e1fb540d3.tar.xz
wireguard-openbsd-3b6c42563ed116d5c56a3ff33a59cb4e1fb540d3.zip
Reyk's ISP sends him router advertisements from non-link local
addresses about every 10 - 30 seconds. Reduce log level to debug to stop the syslog spam. OK reyk
-rw-r--r--sbin/slaacd/engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/slaacd/engine.c b/sbin/slaacd/engine.c
index 2f23d804584..c6a0309a2cb 100644
--- a/sbin/slaacd/engine.c
+++ b/sbin/slaacd/engine.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: engine.c,v 1.34 2019/03/11 22:53:29 pamela Exp $ */
+/* $OpenBSD: engine.c,v 1.35 2019/06/07 11:46:33 florian Exp $ */
/*
* Copyright (c) 2017 Florian Obser <florian@openbsd.org>
@@ -1121,7 +1121,7 @@ parse_ra(struct slaacd_iface *iface, struct imsg_ra *ra)
hbuf = sin6_to_str(&ra->from);
if (!IN6_IS_ADDR_LINKLOCAL(&ra->from.sin6_addr)) {
- log_warnx("RA from non link local address %s", hbuf);
+ log_debug("RA from non link local address %s", hbuf);
return;
}