diff options
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r-- | plugins/check_ping.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index fd73b8c..87f9db0 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c | |||
@@ -162,8 +162,8 @@ process_arguments (int argc, char **argv) | |||
162 | int c = 1; | 162 | int c = 1; |
163 | char *ptr; | 163 | char *ptr; |
164 | 164 | ||
165 | int option_index = 0; | 165 | int option = 0; |
166 | static struct option long_options[] = { | 166 | static struct option longopts[] = { |
167 | STD_LONG_OPTS, | 167 | STD_LONG_OPTS, |
168 | {"packets", required_argument, 0, 'p'}, | 168 | {"packets", required_argument, 0, 'p'}, |
169 | {"nohtml", no_argument, 0, 'n'}, | 169 | {"nohtml", no_argument, 0, 'n'}, |
@@ -184,7 +184,7 @@ process_arguments (int argc, char **argv) | |||
184 | } | 184 | } |
185 | 185 | ||
186 | while (1) { | 186 | while (1) { |
187 | c = getopt_long (argc, argv, "VvhnL46t:c:w:H:p:", long_options, &option_index); | 187 | c = getopt_long (argc, argv, "VvhnL46t:c:w:H:p:", longopts, &option); |
188 | 188 | ||
189 | if (c == -1 || c == EOF) | 189 | if (c == -1 || c == EOF) |
190 | break; | 190 | break; |