diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-08-27 16:43:32 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-08-27 16:43:32 +0200 |
commit | 75f792bc6bdb24371197774787aa312d94fd6773 (patch) | |
tree | e943c5672215d5070df722cdca86b1a2eb498adf | |
parent | faf794b40139f02854b0737b2d62c5a039968762 (diff) | |
download | monitoring-plugins-75f792bc6bdb24371197774787aa312d94fd6773.tar.gz |
check_snmp: declare internal functions static
-rw-r--r-- | plugins/check_snmp.c | 4 |
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 | ||
86 | static process_arguments_wrapper process_arguments(int /*argc*/, char ** /*argv*/); | 86 | static process_arguments_wrapper process_arguments(int /*argc*/, char ** /*argv*/); |
87 | char *trim_whitespaces_and_check_quoting(char *str); | 87 | static char *trim_whitespaces_and_check_quoting(char *str); |
88 | char *get_next_argument(char *str); | 88 | static char *get_next_argument(char *str); |
89 | void print_usage(void); | 89 | void print_usage(void); |
90 | void print_help(void); | 90 | void print_help(void); |
91 | 91 | ||