diff options
Diffstat (limited to 'plugins/check_users.c')
| -rw-r--r-- | plugins/check_users.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/plugins/check_users.c b/plugins/check_users.c index 9e182015..9f308bc3 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
| @@ -107,8 +107,8 @@ process_arguments (int argc, char **argv) | |||
| 107 | { | 107 | { | 
| 108 | int c; | 108 | int c; | 
| 109 | 109 | ||
| 110 | int option_index = 0; | 110 | int option = 0; | 
| 111 | static struct option long_options[] = { | 111 | static struct option longopts[] = { | 
| 112 | {"critical", required_argument, 0, 'c'}, | 112 | {"critical", required_argument, 0, 'c'}, | 
| 113 | {"warning", required_argument, 0, 'w'}, | 113 | {"warning", required_argument, 0, 'w'}, | 
| 114 | {"version", no_argument, 0, 'V'}, | 114 | {"version", no_argument, 0, 'V'}, | 
| @@ -120,7 +120,7 @@ process_arguments (int argc, char **argv) | |||
| 120 | usage ("\n"); | 120 | usage ("\n"); | 
| 121 | 121 | ||
| 122 | while (1) { | 122 | while (1) { | 
| 123 | c = getopt_long (argc, argv, "+hVvc:w:", long_options, &option_index); | 123 | c = getopt_long (argc, argv, "+hVvc:w:", longopts, &option); | 
| 124 | 124 | ||
| 125 | if (c == -1 || c == EOF || c == 1) | 125 | if (c == -1 || c == EOF || c == 1) | 
| 126 | break; | 126 | break; | 
