summaryrefslogtreecommitdiffstats
path: root/plugins/check_nwstat.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_nwstat.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_nwstat.c')
-rw-r--r--plugins/check_nwstat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c
index 4b22726..92a1f11 100644
--- a/plugins/check_nwstat.c
+++ b/plugins/check_nwstat.c
@@ -705,8 +705,8 @@ main(int argc, char **argv) {
705int process_arguments(int argc, char **argv) { 705int process_arguments(int argc, char **argv) {
706 int c; 706 int c;
707 707
708 int option_index = 0; 708 int option = 0;
709 static struct option long_options[] = 709 static struct option longopts[] =
710 { 710 {
711 {"port", required_argument,0,'p'}, 711 {"port", required_argument,0,'p'},
712 {"timeout", required_argument,0,'t'}, 712 {"timeout", required_argument,0,'t'},
@@ -741,7 +741,7 @@ int process_arguments(int argc, char **argv) {
741 } 741 }
742 742
743 while (1) { 743 while (1) {
744 c = getopt_long(argc,argv,"+hoVH:t:c:w:p:v:",long_options,&option_index); 744 c = getopt_long(argc,argv,"+hoVH:t:c:w:p:v:",longopts,&option);
745 745
746 if (c==-1||c==EOF||c==1) 746 if (c==-1||c==EOF||c==1)
747 break; 747 break;