summaryrefslogtreecommitdiffstats
path: root/plugins/check_ups.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-08-10 06:53:22 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-08-10 06:53:22 (GMT)
commitf4f92be60c94fd4e0dd4b2b4b3101543eedb706a (patch)
tree28d25bd0ab624d82435823c940a186370947ad4d /plugins/check_ups.c
parentcbf702f51f839af5a8e9c66bdae7d6a3dc363ace (diff)
downloadmonitoring-plugins-f4f92be60c94fd4e0dd4b2b4b3101543eedb706a.tar.gz
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
Diffstat (limited to 'plugins/check_ups.c')
-rw-r--r--plugins/check_ups.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_ups.c b/plugins/check_ups.c
index fcee747..7e7b36a 100644
--- a/plugins/check_ups.c
+++ b/plugins/check_ups.c
@@ -400,8 +400,8 @@ process_arguments (int argc, char **argv)
400{ 400{
401 int c; 401 int c;
402 402
403 int option_index = 0; 403 int option = 0;
404 static struct option long_options[] = { 404 static struct option longopts[] = {
405 {"hostname", required_argument, 0, 'H'}, 405 {"hostname", required_argument, 0, 'H'},
406 {"ups", required_argument, 0, 'u'}, 406 {"ups", required_argument, 0, 'u'},
407 {"port", required_argument, 0, 'p'}, 407 {"port", required_argument, 0, 'p'},
@@ -427,8 +427,8 @@ process_arguments (int argc, char **argv)
427 } 427 }
428 428
429 while (1) { 429 while (1) {
430 c = getopt_long (argc, argv, "hVH:u:p:v:c:w:t:", long_options, 430 c = getopt_long (argc, argv, "hVH:u:p:v:c:w:t:", longopts,
431 &option_index); 431 &option);
432 432
433 if (c == -1 || c == EOF) 433 if (c == -1 || c == EOF)
434 break; 434 break;