diff options
Diffstat (limited to 'plugins/check_dig.c')
| -rw-r--r-- | plugins/check_dig.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c index ff160591..f376e309 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c | |||
| @@ -160,8 +160,8 @@ process_arguments (int argc, char **argv) | |||
| 160 | { | 160 | { |
| 161 | int c; | 161 | int c; |
| 162 | 162 | ||
| 163 | int option_index = 0; | 163 | int option = 0; |
| 164 | static struct option long_options[] = { | 164 | static struct option longopts[] = { |
| 165 | {"hostname", required_argument, 0, 'H'}, | 165 | {"hostname", required_argument, 0, 'H'}, |
| 166 | {"query_address", required_argument, 0, 'e'}, | 166 | {"query_address", required_argument, 0, 'e'}, |
| 167 | {"verbose", no_argument, 0, 'v'}, | 167 | {"verbose", no_argument, 0, 'v'}, |
| @@ -174,7 +174,7 @@ process_arguments (int argc, char **argv) | |||
| 174 | return ERROR; | 174 | return ERROR; |
| 175 | 175 | ||
| 176 | while (1) { | 176 | while (1) { |
| 177 | c = getopt_long (argc, argv, "hVvt:l:H:", long_options, &option_index); | 177 | c = getopt_long (argc, argv, "hVvt:l:H:", longopts, &option); |
| 178 | 178 | ||
| 179 | if (c == -1 || c == EOF) | 179 | if (c == -1 || c == EOF) |
| 180 | break; | 180 | break; |
| @@ -300,7 +300,7 @@ print_help (void) | |||
| 300 | 300 | ||
| 301 | printf (_(UT_VERBOSE)); | 301 | printf (_(UT_VERBOSE)); |
| 302 | 302 | ||
| 303 | support (); | 303 | printf (_(UT_SUPPORT)); |
| 304 | } | 304 | } |
| 305 | 305 | ||
| 306 | 306 | ||
