diff options
author | 2006-06-18 19:38:11 +0000 | |
---|---|---|
committer | 2006-06-18 19:38:11 +0000 | |
commit | af98c864322ac6cf60058a67edb72a01efa877f2 (patch) | |
tree | 15432f14a57556b4460c712b1c7ffae565514715 | |
parent | s/memcmp/IEEE80211_ADDR_EQ/ (diff) | |
download | wireguard-openbsd-af98c864322ac6cf60058a67edb72a01efa877f2.tar.xz wireguard-openbsd-af98c864322ac6cf60058a67edb72a01efa877f2.zip |
tsk, tsk, tsk... the rule is simple: any define consisting of
more than one token MUST be put in parentheses!
-rw-r--r-- | usr.sbin/ntpd/ntpd.h | 6 |
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, |