summaryrefslogtreecommitdiffstats
path: root/plugins/check_overcr.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_overcr.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_overcr.c')
-rw-r--r--plugins/check_overcr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_overcr.c b/plugins/check_overcr.c
index 9958432..67fb5d1 100644
--- a/plugins/check_overcr.c
+++ b/plugins/check_overcr.c
@@ -285,8 +285,8 @@ process_arguments (int argc, char **argv)
285{ 285{
286 int c; 286 int c;
287 287
288 int option_index = 0; 288 int option = 0;
289 static struct option long_options[] = { 289 static struct option longopts[] = {
290 {"port", required_argument, 0, 'p'}, 290 {"port", required_argument, 0, 'p'},
291 {"timeout", required_argument, 0, 't'}, 291 {"timeout", required_argument, 0, 't'},
292 {"critical", required_argument, 0, 'c'}, 292 {"critical", required_argument, 0, 'c'},
@@ -320,8 +320,8 @@ process_arguments (int argc, char **argv)
320 } 320 }
321 321
322 while (1) { 322 while (1) {
323 c = getopt_long (argc, argv, "+hVH:t:c:w:p:v:", long_options, 323 c = getopt_long (argc, argv, "+hVH:t:c:w:p:v:", longopts,
324 &option_index); 324 &option);
325 325
326 if (c == -1 || c == EOF || c == 1) 326 if (c == -1 || c == EOF || c == 1)
327 break; 327 break;