summaryrefslogtreecommitdiffstats
path: root/plugins/check_ntp.c
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2014-01-24 16:55:57 (GMT)
committerJan Wagner <waja@cyconet.org>2014-01-24 16:55:57 (GMT)
commitc5dc81cd2889421115b4d33b959b0ff8e2df9f6c (patch)
tree2ddaa590bdcd07a318d8c12cc60a6349cc3542db /plugins/check_ntp.c
parentc2c24bc5648d087b62b0bf54df3508c3bf433010 (diff)
downloadmonitoring-plugins-c5dc81cd2889421115b4d33b959b0ff8e2df9f6c.tar.gz
Making AVG_NUM configurable by compiler define (Submitted by Lars)
A minor change which makes the AVG_NUM configurable by compiler define. Partly Closed #956 and Closes #1166
Diffstat (limited to 'plugins/check_ntp.c')
-rw-r--r--plugins/check_ntp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c
index 93b2869..6607b4b 100644
--- a/plugins/check_ntp.c
+++ b/plugins/check_ntp.c
@@ -54,7 +54,9 @@ void print_help (void);
54void print_usage (void); 54void print_usage (void);
55 55
56/* number of times to perform each request to get a good average. */ 56/* number of times to perform each request to get a good average. */
57#ifndef AVG_NUM
57#define AVG_NUM 4 58#define AVG_NUM 4
59#endif
58 60
59/* max size of control message data */ 61/* max size of control message data */
60#define MAX_CM_SIZE 468 62#define MAX_CM_SIZE 468