summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-08-27 16:43:32 +0200
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-08-27 16:43:32 +0200
commit75f792bc6bdb24371197774787aa312d94fd6773 (patch)
treee943c5672215d5070df722cdca86b1a2eb498adf /plugins
parentfaf794b40139f02854b0737b2d62c5a039968762 (diff)
downloadmonitoring-plugins-75f792bc6bdb24371197774787aa312d94fd6773.tar.gz
check_snmp: declare internal functions static
Diffstat (limited to 'plugins')
-rw-r--r--plugins/check_snmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 3ac949a5..c65e3d82 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -84,8 +84,8 @@ typedef struct proces_arguments_wrapper {
84} process_arguments_wrapper; 84} process_arguments_wrapper;
85 85
86static process_arguments_wrapper process_arguments(int /*argc*/, char ** /*argv*/); 86static process_arguments_wrapper process_arguments(int /*argc*/, char ** /*argv*/);
87char *trim_whitespaces_and_check_quoting(char *str); 87static char *trim_whitespaces_and_check_quoting(char *str);
88char *get_next_argument(char *str); 88static char *get_next_argument(char *str);
89void print_usage(void); 89void print_usage(void);
90void print_help(void); 90void print_help(void);
91 91