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) | |||
| 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 | ||
