summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8b2381c)
raw | patch | inline | side by side (parent: 8b2381c)
author | Ton Voon <tonvoon@users.sourceforge.net> | |
Tue, 11 Mar 2003 22:36:03 +0000 (22:36 +0000) | ||
committer | Ton Voon <tonvoon@users.sourceforge.net> | |
Tue, 11 Mar 2003 22:36:03 +0000 (22:36 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@398 f882894a-f735-0410-b71e-b25c423dba1c
plugins/negate.c | patch | blob | history |
diff --git a/plugins/negate.c b/plugins/negate.c
index 1603342bb1727523336b80216bb9de3868f8d1ed..3e4c493ea6adc1fd749d555b17f0ac35e5ee45b3 100644 (file)
--- a/plugins/negate.c
+++ b/plugins/negate.c
print_usage (void)
{
printf ("Usage:\n" " %s %s\n"
-#ifdef HAVE_GETOPT_H
" %s (-h | --help) for detailed help\n"
" %s (-V | --version) for version information\n",
-#else
- " %s -h for detailed help\n"
- " %s -V for version information\n",
-#endif
progname, OPTIONS, progname, progname);
}
\f
{
int c;
-#ifdef HAVE_GETOPT_H
int option_index = 0;
static struct option long_options[] = {
{"help", no_argument, 0, 'h'},
{"timeout", required_argument, 0, 't'},
{0, 0, 0, 0}
};
-#endif
while (1) {
-#ifdef HAVE_GETOPT_H
c = getopt_long (argc, argv, "hVt:",
long_options, &option_index);
-#else
- c = getopt (argc, argv, "hVt:");
-#endif
+
if (c == -1 || c == EOF)
break;