diff options
Diffstat (limited to 'plugins/check_ssh.c')
| -rw-r--r-- | plugins/check_ssh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c index fdded583..26709a7d 100644 --- a/plugins/check_ssh.c +++ b/plugins/check_ssh.c | |||
| @@ -70,8 +70,8 @@ process_arguments (int argc, char **argv) | |||
| 70 | { | 70 | { |
| 71 | int c; | 71 | int c; |
| 72 | 72 | ||
| 73 | int option_index = 0; | 73 | int option = 0; |
| 74 | static struct option long_options[] = { | 74 | static struct option longopts[] = { |
| 75 | {"help", no_argument, 0, 'h'}, | 75 | {"help", no_argument, 0, 'h'}, |
| 76 | {"version", no_argument, 0, 'V'}, | 76 | {"version", no_argument, 0, 'V'}, |
| 77 | {"host", required_argument, 0, 'H'}, | 77 | {"host", required_argument, 0, 'H'}, |
| @@ -91,7 +91,7 @@ process_arguments (int argc, char **argv) | |||
| 91 | strcpy (argv[c], "-t"); | 91 | strcpy (argv[c], "-t"); |
| 92 | 92 | ||
| 93 | while (1) { | 93 | while (1) { |
| 94 | c = getopt_long (argc, argv, "+Vhv46t:H:p:", long_options, &option_index); | 94 | c = getopt_long (argc, argv, "+Vhv46t:H:p:", longopts, &option); |
| 95 | 95 | ||
| 96 | if (c == -1 || c == EOF) | 96 | if (c == -1 || c == EOF) |
| 97 | break; | 97 | break; |
