summaryrefslogtreecommitdiffstats
path: root/plugins/check_ssh.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2003-03-11 22:22:12 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2003-03-11 22:22:12 (GMT)
commit7283211f00a3a89956d9dfc4a851dc1aaa7a1cf3 (patch)
tree371434969644a1d3cc3c5c2c26ee73cd8221aaa4 /plugins/check_ssh.c
parentd7ba5ec38b51731d4ddc0a7f6e9f30897f70f156 (diff)
downloadmonitoring-plugins-7283211f00a3a89956d9dfc4a851dc1aaa7a1cf3.tar.gz
Remove getopt_long checks
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@396 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ssh.c')
-rw-r--r--plugins/check_ssh.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index bd0a245..f3a351e 100644
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
@@ -64,7 +64,6 @@ process_arguments (int argc, char **argv)
64 int c; 64 int c;
65 char *tmp = NULL; 65 char *tmp = NULL;
66 66
67#ifdef HAVE_GETOPT_H
68 int option_index = 0; 67 int option_index = 0;
69 static struct option long_options[] = { 68 static struct option long_options[] = {
70 {"version", no_argument, 0, 'V'}, 69 {"version", no_argument, 0, 'V'},
@@ -74,7 +73,6 @@ process_arguments (int argc, char **argv)
74 {"host", required_argument, 0, 'H'}, 73 {"host", required_argument, 0, 'H'},
75 {0, 0, 0, 0} 74 {0, 0, 0, 0}
76 }; 75 };
77#endif
78 76
79 if (argc < 2) 77 if (argc < 2)
80 return ERROR; 78 return ERROR;
@@ -84,11 +82,8 @@ process_arguments (int argc, char **argv)
84 strcpy (argv[c], "-t"); 82 strcpy (argv[c], "-t");
85 83
86 while (1) { 84 while (1) {
87#ifdef HAVE_GETOPT_H
88 c = getopt_long (argc, argv, "+Vhvt:H:p:", long_options, &option_index); 85 c = getopt_long (argc, argv, "+Vhvt:H:p:", long_options, &option_index);
89#else 86
90 c = getopt (argc, argv, "+Vhvt:H:p:");
91#endif
92 if (c == -1 || c == EOF) 87 if (c == -1 || c == EOF)
93 break; 88 break;
94 89