summaryrefslogtreecommitdiffstats
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
parentc2c24bc5648d087b62b0bf54df3508c3bf433010 (diff)
downloadmonitoring-plugins-c5dc81c.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
-rw-r--r--plugins/check_ntp.c2
-rw-r--r--plugins/check_ntp_time.c2
2 files changed, 4 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
diff --git a/plugins/check_ntp_time.c b/plugins/check_ntp_time.c
index 746b683..f856457 100644
--- a/plugins/check_ntp_time.c
+++ b/plugins/check_ntp_time.c
@@ -55,7 +55,9 @@ void print_help (void);
55void print_usage (void); 55void print_usage (void);
56 56
57/* number of times to perform each request to get a good average. */ 57/* number of times to perform each request to get a good average. */
58#ifndef AVG_NUM
58#define AVG_NUM 4 59#define AVG_NUM 4
60#endif
59 61
60/* max size of control message data */ 62/* max size of control message data */
61#define MAX_CM_SIZE 468 63#define MAX_CM_SIZE 468