summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2024-10-31 14:19:05 +0100
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2024-10-31 14:19:05 +0100
commitab5a037d66b970fd4c7d7bb67495c38e38664da0 (patch)
tree6e8ef6ba5c0291ec5355a363f0c12f721e493571
parent733d7257191cfe5b77d6374257a1435ec14fd625 (diff)
downloadmonitoring-plugins-ab5a037d66b970fd4c7d7bb67495c38e38664da0.tar.gz
negate: do not export local variables
-rw-r--r--plugins/negate.c6
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
46static const char **process_arguments(int, char **); 46static const char **process_arguments(int, char **);
47void validate_arguments(char **); 47static void validate_arguments(char **);
48void print_help(void); 48static void print_help(void);
49void print_usage(void); 49void print_usage(void);
50bool subst_text = false; 50static bool subst_text = false;
51 51
52static int state[4] = { 52static int state[4] = {
53 STATE_OK, 53 STATE_OK,