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_pgsql.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_pgsql.c')
-rw-r--r-- | plugins/check_pgsql.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 2033b8c..e148456 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -246,7 +246,6 @@ process_arguments (int argc, char **argv) | |||
246 | { | 246 | { |
247 | int c; | 247 | int c; |
248 | 248 | ||
249 | #ifdef HAVE_GETOPT_H | ||
250 | int option_index = 0; | 249 | int option_index = 0; |
251 | static struct option long_options[] = { | 250 | static struct option long_options[] = { |
252 | {"help", no_argument, 0, 'h'}, | 251 | {"help", no_argument, 0, 'h'}, |
@@ -262,15 +261,11 @@ process_arguments (int argc, char **argv) | |||
262 | {"database", required_argument, 0, 'd'}, | 261 | {"database", required_argument, 0, 'd'}, |
263 | {0, 0, 0, 0} | 262 | {0, 0, 0, 0} |
264 | }; | 263 | }; |
265 | #endif | ||
266 | 264 | ||
267 | while (1) { | 265 | while (1) { |
268 | #ifdef HAVE_GETOPT_H | ||
269 | c = getopt_long (argc, argv, "hVt:c:w:H:P:d:l:p:a:", | 266 | c = getopt_long (argc, argv, "hVt:c:w:H:P:d:l:p:a:", |
270 | long_options, &option_index); | 267 | long_options, &option_index); |
271 | #else | 268 | |
272 | c = getopt (argc, argv, "hVt:c:w:H:P:d:l:p:a:"); | ||
273 | #endif | ||
274 | if (c == EOF) | 269 | if (c == EOF) |
275 | break; | 270 | break; |
276 | 271 | ||