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_vsz.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_vsz.c')
-rw-r--r-- | plugins/check_vsz.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/check_vsz.c b/plugins/check_vsz.c index e6132a0..7a9acb2 100644 --- a/plugins/check_vsz.c +++ b/plugins/check_vsz.c | |||
@@ -140,7 +140,6 @@ process_arguments (int argc, char **argv) | |||
140 | { | 140 | { |
141 | int c; | 141 | int c; |
142 | 142 | ||
143 | #ifdef HAVE_GETOPT_H | ||
144 | int option_index = 0; | 143 | int option_index = 0; |
145 | static struct option long_options[] = { | 144 | static struct option long_options[] = { |
146 | {"help", no_argument, 0, 'h'}, | 145 | {"help", no_argument, 0, 'h'}, |
@@ -150,17 +149,13 @@ process_arguments (int argc, char **argv) | |||
150 | {"command", required_argument, 0, 'C'}, | 149 | {"command", required_argument, 0, 'C'}, |
151 | {0, 0, 0, 0} | 150 | {0, 0, 0, 0} |
152 | }; | 151 | }; |
153 | #endif | ||
154 | 152 | ||
155 | if (argc < 2) | 153 | if (argc < 2) |
156 | return ERROR; | 154 | return ERROR; |
157 | 155 | ||
158 | while (1) { | 156 | while (1) { |
159 | #ifdef HAVE_GETOPT_H | ||
160 | c = getopt_long (argc, argv, "+hVc:w:C:", long_options, &option_index); | 157 | c = getopt_long (argc, argv, "+hVc:w:C:", long_options, &option_index); |
161 | #else | 158 | |
162 | c = getopt (argc, argv, "+hVc:w:C:"); | ||
163 | #endif | ||
164 | if (c == EOF) | 159 | if (c == EOF) |
165 | break; | 160 | break; |
166 | 161 | ||