summaryrefslogtreecommitdiff
path: root/usr.sbin/ntpd
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2006-06-18 19:38:12 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2006-06-18 19:38:12 +0000
commitc8a0f869574b249a47f4c4e346f6ee8199e34aa3 (patch)
treea71b9d0df01b9c06eca1003b77f55d378909f3ea /usr.sbin/ntpd
parent388c12221a28dda55eb212f522e69eea0b642517 (diff)
tsk, tsk, tsk... the rule is simple: any define consisting of
more than one token MUST be put in parentheses!
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r--usr.sbin/ntpd/ntpd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ntpd/ntpd.h b/usr.sbin/ntpd/ntpd.h
index 3565102c7dc..cc835ef877c 100644
--- a/usr.sbin/ntpd/ntpd.h
+++ b/usr.sbin/ntpd/ntpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ntpd.h,v 1.72 2006/06/17 18:40:42 otto Exp $ */
+/* $OpenBSD: ntpd.h,v 1.73 2006/06/18 19:38:11 otto Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -61,9 +61,9 @@
#define MAX_FREQUENCY_ADJUST 128e-5 /* max correction per iteration */
-#define SENSOR_DATA_MAXAGE 15*60
+#define SENSOR_DATA_MAXAGE (15*60)
#define SENSOR_QUERY_INTERVAL 30
-#define SENSOR_SCAN_INTERVAL 5*60
+#define SENSOR_SCAN_INTERVAL (5*60)
enum client_state {
STATE_NONE,