diff options
Diffstat (limited to 'plugins/check_nwstat.c')
-rw-r--r-- | plugins/check_nwstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c index 4b227269..92a1f117 100644 --- a/plugins/check_nwstat.c +++ b/plugins/check_nwstat.c @@ -705,8 +705,8 @@ main(int argc, char **argv) { int process_arguments(int argc, char **argv) { int c; - int option_index = 0; - static struct option long_options[] = + int option = 0; + static struct option longopts[] = { {"port", required_argument,0,'p'}, {"timeout", required_argument,0,'t'}, @@ -741,7 +741,7 @@ int process_arguments(int argc, char **argv) { } while (1) { - c = getopt_long(argc,argv,"+hoVH:t:c:w:p:v:",long_options,&option_index); + c = getopt_long(argc,argv,"+hoVH:t:c:w:p:v:",longopts,&option); if (c==-1||c==EOF||c==1) break; |