From f4f92be60c94fd4e0dd4b2b4b3101543eedb706a Mon Sep 17 00:00:00 2001 From: Karl DeBisschop Date: Sun, 10 Aug 2003 06:53:22 +0000 Subject: the last round of pedantic compiler warnings git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@676 f882894a-f735-0410-b71e-b25c423dba1c --- plugins/check_procs.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/check_procs.c') diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 1894b281..5313b977 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c @@ -278,8 +278,8 @@ process_arguments (int argc, char **argv) int c = 1; char *user; struct passwd *pw; - int option_index = 0; - static struct option long_options[] = { + int option = 0; + static struct option longopts[] = { {"warning", required_argument, 0, 'w'}, {"critical", required_argument, 0, 'c'}, {"metric", required_argument, 0, 'm'}, @@ -303,7 +303,7 @@ process_arguments (int argc, char **argv) while (1) { c = getopt_long (argc, argv, "Vvht:c:w:p:s:u:C:a:z:r:m:P:", - long_options, &option_index); + longopts, &option); if (c == -1 || c == EOF) break; @@ -362,7 +362,7 @@ process_arguments (int argc, char **argv) if (statopts) break; else - statopts = strdup(optarg); + statopts = optarg; asprintf (&fmt, _("%s%sSTATE = %s"), fmt, (options ? ", " : ""), statopts); options |= STAT; break; @@ -397,7 +397,7 @@ process_arguments (int argc, char **argv) if (prog) break; else - prog = strdup(optarg); + prog = optarg; asprintf (&fmt, _("%s%scommand name '%s'"), fmt, (options ? ", " : ""), prog); options |= PROG; @@ -406,7 +406,7 @@ process_arguments (int argc, char **argv) if (args) break; else - args = strdup(optarg); + args = optarg; asprintf (&fmt, _("%s%sargs '%s'"), fmt, (options ? ", " : ""), args); options |= ARGS; break; -- cgit v1.2.3-74-g34f1