diff options
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r-- | usr.sbin/ntpd/client.c | 4 | ||||
-rw-r--r-- | usr.sbin/ntpd/parse.y | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ntpd/client.c b/usr.sbin/ntpd/client.c index da30417faf5..4af7b61fe0f 100644 --- a/usr.sbin/ntpd/client.c +++ b/usr.sbin/ntpd/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.13 2004/07/07 06:50:40 henning Exp $ */ +/* $OpenBSD: client.c,v 1.14 2004/07/07 06:51:16 deraadt Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -116,7 +116,7 @@ client_dispatch(struct ntp_peer *p) msg.orgtime.fraction != p->query->msg.xmttime.fraction) return (0); - /* + /* * From RFC 2030: * * Timestamp Name ID When Generated diff --git a/usr.sbin/ntpd/parse.y b/usr.sbin/ntpd/parse.y index c2ab3d3b936..174a6ced6aa 100644 --- a/usr.sbin/ntpd/parse.y +++ b/usr.sbin/ntpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.6 2004/07/07 05:47:57 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.7 2004/07/07 06:51:16 deraadt Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -149,7 +149,7 @@ conf_main : LISTEN ON address { | SERVER address { struct ntp_peer *p; struct ntp_addr *h, *next; - + for (h = $2; h != NULL; h = next) { next = h->next; if (h->ss.ss_family != AF_INET && |