Browse Source

log_debug() when a peer doesn't answer in time

OPENBSD_3_6
henning 20 years ago
parent
commit
23963e1ca9
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/usr.sbin/ntpd/ntp.c

+ 3
- 1
src/usr.sbin/ntpd/ntp.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: ntp.c,v 1.15 2004/07/07 07:32:05 alexander Exp $ */
/* $OpenBSD: ntp.c,v 1.16 2004/07/08 01:21:09 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@ -169,6 +169,8 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *conf)
client_query(p);
if (p->deadline > 0 && p->deadline <= time(NULL)) {
log_debug("no reply from %s received in time",
log_sockaddr((struct sockaddr *)&p->ss));
if (p->trustlevel >= TRUSTLEVEL_BADPEER &&
--p->trustlevel < TRUSTLEVEL_BADPEER)
log_info("peer %s now invalid",


Loading…
Cancel
Save