diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-10-19 15:53:58 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-10-19 15:53:58 +0000 |
commit | b86c25cb8346376689c336273f707c200dbbe115 (patch) | |
tree | b44c01263d088c6e91a892783435ee5a7b485ebc /usr.sbin/ntpd | |
parent | f23239f1abfa1631368d1a24e7349bba9d3d5cd0 (diff) |
don't fill the logs; spotted by deraadt@ ok henning@
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r-- | usr.sbin/ntpd/ntp_msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ntpd/ntp_msg.c b/usr.sbin/ntpd/ntp_msg.c index b136260fc3a..354b89b239e 100644 --- a/usr.sbin/ntpd/ntp_msg.c +++ b/usr.sbin/ntpd/ntp_msg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp_msg.c,v 1.17 2007/05/26 21:20:35 henning Exp $ */ +/* $OpenBSD: ntp_msg.c,v 1.18 2007/10/19 15:53:57 otto Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -29,7 +29,7 @@ int ntp_getmsg(struct sockaddr *sa, char *p, ssize_t len, struct ntp_msg *msg) { if (len != NTP_MSGSIZE_NOAUTH && len != NTP_MSGSIZE) { - log_warnx("malformed packet received from %s", + log_debug("malformed packet received from %s", log_sockaddr(sa)); return (-1); } |