diff options
Diffstat (limited to 'plugins/check_by_ssh.c')
-rw-r--r-- | plugins/check_by_ssh.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_by_ssh.c b/plugins/check_by_ssh.c index 59e8ea0c..b0aa1897 100644 --- a/plugins/check_by_ssh.c +++ b/plugins/check_by_ssh.c | |||
@@ -169,8 +169,8 @@ process_arguments (int argc, char **argv) | |||
169 | int c; | 169 | int c; |
170 | char *p1, *p2; | 170 | char *p1, *p2; |
171 | 171 | ||
172 | int option_index = 0; | 172 | int option = 0; |
173 | static struct option long_options[] = { | 173 | static struct option longopts[] = { |
174 | {"version", no_argument, 0, 'V'}, | 174 | {"version", no_argument, 0, 'V'}, |
175 | {"help", no_argument, 0, 'h'}, | 175 | {"help", no_argument, 0, 'h'}, |
176 | {"verbose", no_argument, 0, 'v'}, | 176 | {"verbose", no_argument, 0, 'v'}, |
@@ -200,8 +200,8 @@ process_arguments (int argc, char **argv) | |||
200 | strcpy (argv[c], "-t"); | 200 | strcpy (argv[c], "-t"); |
201 | 201 | ||
202 | while (1) { | 202 | while (1) { |
203 | c = getopt_long (argc, argv, "Vvh1246ft:H:O:p:i:u:l:C:n:s:", long_options, | 203 | c = getopt_long (argc, argv, "Vvh1246ft:H:O:p:i:u:l:C:n:s:", longopts, |
204 | &option_index); | 204 | &option); |
205 | 205 | ||
206 | if (c == -1 || c == EOF) | 206 | if (c == -1 || c == EOF) |
207 | break; | 207 | break; |