diff options
Diffstat (limited to 'ntpd/ntp_config.c')
-rw-r--r-- | ntpd/ntp_config.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ntpd/ntp_config.c b/ntpd/ntp_config.c index ee9df318a630..cdc391c1b95b 100644 --- a/ntpd/ntp_config.c +++ b/ntpd/ntp_config.c @@ -137,6 +137,16 @@ typedef struct peer_resolved_ctx_tag { #define MAXPPS 20 /* maximum length of PPS device string */ /* + * Poll Skew List + */ + +static psl_item psl[17-3+1]; /* values for polls 3-17 */ + /* To simplify the runtime code we */ + /* don't want to have to special-case */ + /* dealing with a default */ + + +/* * Miscellaneous macros */ #define ISEOL(c) ((c) == '#' || (c) == '\n' || (c) == '\0') |