summaryrefslogtreecommitdiffstats
path: root/plugins/check_disk.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_disk.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_disk.c')
-rw-r--r--plugins/check_disk.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 1afc762..5fac4ea 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -217,7 +217,6 @@ process_arguments (int argc, char **argv)
217{ 217{
218 int c; 218 int c;
219 219
220#ifdef HAVE_GETOPT_H
221 int option_index = 0; 220 int option_index = 0;
222 static struct option long_options[] = { 221 static struct option long_options[] = {
223 {"warning", required_argument, 0, 'w'}, 222 {"warning", required_argument, 0, 'w'},
@@ -235,7 +234,6 @@ process_arguments (int argc, char **argv)
235 234
236 {0, 0, 0, 0} 235 {0, 0, 0, 0}
237 }; 236 };
238#endif
239 237
240 if (argc < 2) 238 if (argc < 2)
241 return ERROR; 239 return ERROR;
@@ -245,12 +243,7 @@ process_arguments (int argc, char **argv)
245 strcpy (argv[c], "-t"); 243 strcpy (argv[c], "-t");
246 244
247 while (1) { 245 while (1) {
248#ifdef HAVE_GETOPT_H 246 c = getopt_long (argc, argv, "+?Vqhvet:c:w:p:x:m", long_options, &option_index);
249 c =
250 getopt_long (argc, argv, "+?Vqhvet:c:w:p:x:m", long_options, &option_index);
251#else
252 c = getopt (argc, argv, "+?Vqhvet:c:w:p:x:m");
253#endif
254 247
255 if (c == -1 || c == EOF) 248 if (c == -1 || c == EOF)
256 break; 249 break;