diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-11 22:22:12 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-11 22:22:12 (GMT) |
commit | 7283211f00a3a89956d9dfc4a851dc1aaa7a1cf3 (patch) | |
tree | 371434969644a1d3cc3c5c2c26ee73cd8221aaa4 /plugins/check_udp.c | |
parent | d7ba5ec38b51731d4ddc0a7f6e9f30897f70f156 (diff) | |
download | monitoring-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_udp.c')
-rw-r--r-- | plugins/check_udp.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/check_udp.c b/plugins/check_udp.c index 4ae9c10..ac22102 100644 --- a/plugins/check_udp.c +++ b/plugins/check_udp.c | |||
@@ -125,7 +125,6 @@ process_arguments (int argc, char **argv) | |||
125 | { | 125 | { |
126 | int c; | 126 | int c; |
127 | 127 | ||
128 | #ifdef HAVE_GETOPT_H | ||
129 | int option_index = 0; | 128 | int option_index = 0; |
130 | static struct option long_options[] = { | 129 | static struct option long_options[] = { |
131 | {"hostname", required_argument, 0, 'H'}, | 130 | {"hostname", required_argument, 0, 'H'}, |
@@ -140,7 +139,6 @@ process_arguments (int argc, char **argv) | |||
140 | {"help", no_argument, 0, 'h'}, | 139 | {"help", no_argument, 0, 'h'}, |
141 | {0, 0, 0, 0} | 140 | {0, 0, 0, 0} |
142 | }; | 141 | }; |
143 | #endif | ||
144 | 142 | ||
145 | if (argc < 2) | 143 | if (argc < 2) |
146 | usage ("\n"); | 144 | usage ("\n"); |
@@ -155,11 +153,7 @@ process_arguments (int argc, char **argv) | |||
155 | } | 153 | } |
156 | 154 | ||
157 | while (1) { | 155 | while (1) { |
158 | #ifdef HAVE_GETOPT_H | 156 | c = getopt_long (argc, argv, "+hVvH:e:s:c:w:t:p:", long_options, &option_index); |
159 | c = getopt_long (argc, argv, "+hVvH:e:s:c:w:t:p:", long_options, &option_index); | ||
160 | #else | ||
161 | c = getopt (argc, argv, "+hVvH:e:s:c:w:t:p:"); | ||
162 | #endif | ||
163 | 157 | ||
164 | if (c == -1 || c == EOF || c == 1) | 158 | if (c == -1 || c == EOF || c == 1) |
165 | break; | 159 | break; |