diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2020-06-22 06:11:35 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2020-06-22 06:11:35 +0000 |
commit | 6a950faf2e6297b052dff46879dea378933a5a3e (patch) | |
tree | 787af02af706bd082dc02b4ed54beba88f947284 /usr.sbin/ntpd | |
parent | fc72d7d2e4841b5fbe51d50adfebf57629be09ba (diff) |
When the main process exits, it closes the pipe so a read 0 occurs.
Move log level to debug for that case and while there correct the
string, we're reding, not writing.
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r-- | usr.sbin/ntpd/ntp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ntpd/ntp.c b/usr.sbin/ntpd/ntp.c index ec3d6bc431f..015aea3631e 100644 --- a/usr.sbin/ntpd/ntp.c +++ b/usr.sbin/ntpd/ntp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp.c,v 1.164 2020/04/11 07:49:48 otto Exp $ */ +/* $OpenBSD: ntp.c,v 1.165 2020/06/22 06:11:34 otto Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -365,7 +365,7 @@ ntp_main(struct ntpd_conf *nconf, struct passwd *pw, int argc, char **argv) if (nfds > 0 && pfd[PFD_PIPE_MAIN].revents & (POLLIN|POLLERR)) { nfds--; if (ntp_dispatch_imsg() == -1) { - log_warn("pipe write error (from main)"); + log_debug("pipe read error (from main)"); ntp_quit = 1; } } @@ -380,7 +380,7 @@ ntp_main(struct ntpd_conf *nconf, struct passwd *pw, int argc, char **argv) if (nfds > 0 && pfd[PFD_PIPE_DNS].revents & (POLLIN|POLLERR)) { nfds--; if (ntp_dispatch_imsg_dns() == -1) { - log_warn("pipe write error (from dns engine)"); + log_warn("pipe read error (from dns engine)"); ntp_quit = 1; } } |