diff options
author | 2015-02-10 23:52:41 +0000 | |
---|---|---|
committer | 2015-02-10 23:52:41 +0000 | |
commit | 49ffac39b100d04a599502dafe771df4d58545c5 (patch) | |
tree | 70fbb1d06e9bb7f83ee9d8c1097f843baebac529 | |
parent | Convert to uiomove() (diff) | |
download | wireguard-openbsd-49ffac39b100d04a599502dafe771df4d58545c5.tar.xz wireguard-openbsd-49ffac39b100d04a599502dafe771df4d58545c5.zip |
Be less chatty on constraint errors.
OK deraadt@
-rw-r--r-- | usr.sbin/ntpd/constraint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ntpd/constraint.c b/usr.sbin/ntpd/constraint.c index 8868dbf2c00..5272cdf19e7 100644 --- a/usr.sbin/ntpd/constraint.c +++ b/usr.sbin/ntpd/constraint.c @@ -1,4 +1,4 @@ -/* $OpenBSD: constraint.c,v 1.2 2015/02/10 11:36:37 reyk Exp $ */ +/* $OpenBSD: constraint.c,v 1.3 2015/02/10 23:52:41 reyk Exp $ */ /* * Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> @@ -262,7 +262,7 @@ constraint_check_child(void) if ((cstr = constraint_bypid(pid)) != NULL) { if (fail) { - log_info("no constraint reply from %s" + log_debug("no constraint reply from %s" " received in time, next query %ds", log_sockaddr((struct sockaddr *) &cstr->addr->ss), CONSTRAINT_SCAN_INTERVAL); @@ -548,7 +548,7 @@ httpsdate_request(struct httpsdate *httpsdate, struct timeval *when) if (tls_connect(httpsdate->tls_ctx, httpsdate->tls_host, httpsdate->tls_port) == -1) { - log_warnx("tls failed: %s: %s", httpsdate->tls_host, + log_debug("tls failed: %s: %s", httpsdate->tls_host, tls_error(httpsdate->tls_ctx)); goto fail; } |