diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-31 12:59:28 +0100 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-31 12:59:28 +0100 |
commit | 4f74229bb3dd9d43dd80a8f396f0905a674c4746 (patch) | |
tree | cb3d17c9ae9b649fa86cd928f2ffe0503349dfa4 | |
parent | 623fed10cce7615528038992ed6d65165234cb9c (diff) | |
download | monitoring-plugins-4f74229bb3dd9d43dd80a8f396f0905a674c4746.tar.gz |
check_ntp_peer: do not export local symbols
-rw-r--r-- | plugins/check_ntp_peer.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c index a0ec037c..2fac2bb7 100644 --- a/plugins/check_ntp_peer.c +++ b/plugins/check_ntp_peer.c | |||
@@ -61,12 +61,12 @@ static char *tcrit = "0:"; | |||
61 | static bool syncsource_found = false; | 61 | static bool syncsource_found = false; |
62 | static bool li_alarm = false; | 62 | static bool li_alarm = false; |
63 | 63 | ||
64 | int process_arguments(int, char **); | 64 | static int process_arguments(int, char **); |
65 | thresholds *offset_thresholds = NULL; | 65 | static thresholds *offset_thresholds = NULL; |
66 | thresholds *jitter_thresholds = NULL; | 66 | static thresholds *jitter_thresholds = NULL; |
67 | thresholds *stratum_thresholds = NULL; | 67 | static thresholds *stratum_thresholds = NULL; |
68 | thresholds *truechimer_thresholds = NULL; | 68 | static thresholds *truechimer_thresholds = NULL; |
69 | void print_help(void); | 69 | static void print_help(void); |
70 | void print_usage(void); | 70 | void print_usage(void); |
71 | 71 | ||
72 | /* max size of control message data */ | 72 | /* max size of control message data */ |