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_ldap.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_ldap.c')
-rw-r--r-- | plugins/check_ldap.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index ac11c58..90fe622 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
@@ -130,7 +130,6 @@ process_arguments (int argc, char **argv) | |||
130 | { | 130 | { |
131 | int c; | 131 | int c; |
132 | 132 | ||
133 | #ifdef HAVE_GETOPT_H | ||
134 | int option_index = 0; | 133 | int option_index = 0; |
135 | /* initialize the long option struct */ | 134 | /* initialize the long option struct */ |
136 | static struct option longopts[] = { | 135 | static struct option longopts[] = { |
@@ -147,7 +146,6 @@ process_arguments (int argc, char **argv) | |||
147 | {"crit", required_argument, 0, 'c'}, | 146 | {"crit", required_argument, 0, 'c'}, |
148 | {0, 0, 0, 0} | 147 | {0, 0, 0, 0} |
149 | }; | 148 | }; |
150 | #endif | ||
151 | 149 | ||
152 | if (argc < 2) | 150 | if (argc < 2) |
153 | return ERROR; | 151 | return ERROR; |
@@ -158,11 +156,7 @@ process_arguments (int argc, char **argv) | |||
158 | } | 156 | } |
159 | 157 | ||
160 | while (1) { | 158 | while (1) { |
161 | #ifdef HAVE_GETOPT_H | 159 | c = getopt_long (argc, argv, "hVt:c:w:H:b:p:a:D:P:", longopts, &option_index); |
162 | c = getopt_long (argc, argv, "hVt:c:w:H:b:p:a:D:P:", longopts, &option_index); | ||
163 | #else | ||
164 | c = getopt (argc, argv, "+?hVt:c:w:H:b:p:a:D:P:"); | ||
165 | #endif | ||
166 | 160 | ||
167 | if (c == -1 || c == EOF) | 161 | if (c == -1 || c == EOF) |
168 | break; | 162 | break; |