summaryrefslogtreecommitdiff
path: root/usr.sbin/ntpd
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-07-07 06:51:17 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-07-07 06:51:17 +0000
commitc164aa8e7f02eb327402e3c97567d1226d38e017 (patch)
tree2fe3c278cd056e26079baf57e0d8a0f6eef12334 /usr.sbin/ntpd
parent427dfb368bd81244c5b1127d059320e1fd46e9ff (diff)
knf!
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r--usr.sbin/ntpd/client.c4
-rw-r--r--usr.sbin/ntpd/parse.y4
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 &&