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_nt.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'plugins/check_nt.c') diff --git a/plugins/check_nt.c b/plugins/check_nt.c index b1314d4b..3b2bd5e1 100644 --- a/plugins/check_nt.c +++ b/plugins/check_nt.c @@ -28,7 +28,6 @@ * *****************************************************************************/ -#include "config.h" #include "common.h" #include "netutils.h" #include "utils.h" @@ -331,8 +330,8 @@ int 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'}, @@ -366,7 +365,7 @@ int process_arguments(int argc, char **argv){ } while (1){ - c = getopt_long(argc,argv,"+hVH:t:c:w:p:v:l:s:d:",long_options,&option_index); + c = getopt_long(argc,argv,"+hVH:t:c:w:p:v:l:s:d:",longopts,&option); if (c==-1||c==EOF||c==1) break; @@ -385,10 +384,10 @@ int process_arguments(int argc, char **argv){ exit(STATE_OK); case 'H': /* hostname */ if (server_address) free(server_address); - server_address = strdup(optarg); + server_address = optarg; break; case 's': /* password */ - req_password = strdup (optarg); + req_password = optarg; break; case 'p': /* port */ if (is_intnonneg(optarg)) @@ -421,7 +420,7 @@ int process_arguments(int argc, char **argv){ return ERROR; break; case 'l': /* value list */ - value_list = strdup (optarg); + value_list = optarg; break; case 'w': /* warning threshold */ warning_value=strtoul(optarg,NULL,10); -- cgit v1.2.3