diff options
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 e6132a0f..7a9acb2d 100644 --- a/plugins/check_vsz.c +++ b/plugins/check_vsz.c @@ -140,7 +140,6 @@ process_arguments (int argc, char **argv) { int c; -#ifdef HAVE_GETOPT_H int option_index = 0; static struct option long_options[] = { {"help", no_argument, 0, 'h'}, @@ -150,17 +149,13 @@ process_arguments (int argc, char **argv) {"command", required_argument, 0, 'C'}, {0, 0, 0, 0} }; -#endif if (argc < 2) return ERROR; while (1) { -#ifdef HAVE_GETOPT_H c = getopt_long (argc, argv, "+hVc:w:C:", long_options, &option_index); -#else - c = getopt (argc, argv, "+hVc:w:C:"); -#endif + if (c == EOF) break; |