diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-31 14:19:05 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-31 14:19:05 +0100 |
commit | ab5a037d66b970fd4c7d7bb67495c38e38664da0 (patch) | |
tree | 6e8ef6ba5c0291ec5355a363f0c12f721e493571 | |
parent | 733d7257191cfe5b77d6374257a1435ec14fd625 (diff) | |
download | monitoring-plugins-ab5a037d66b970fd4c7d7bb67495c38e38664da0.tar.gz |
negate: do not export local variables
-rw-r--r-- | plugins/negate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index e8f7c010..82a5548c 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
@@ -44,10 +44,10 @@ const char *email = "devel@monitoring-plugins.org"; | |||
44 | /* char *command_line; */ | 44 | /* char *command_line; */ |
45 | 45 | ||
46 | static const char **process_arguments(int, char **); | 46 | static const char **process_arguments(int, char **); |
47 | void validate_arguments(char **); | 47 | static void validate_arguments(char **); |
48 | void print_help(void); | 48 | static void print_help(void); |
49 | void print_usage(void); | 49 | void print_usage(void); |
50 | bool subst_text = false; | 50 | static bool subst_text = false; |
51 | 51 | ||
52 | static int state[4] = { | 52 | static int state[4] = { |
53 | STATE_OK, | 53 | STATE_OK, |