summaryrefslogtreecommitdiffstats
path: root/plugins/check_users.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-08-10 06:53:22 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-08-10 06:53:22 (GMT)
commitf4f92be60c94fd4e0dd4b2b4b3101543eedb706a (patch)
tree28d25bd0ab624d82435823c940a186370947ad4d /plugins/check_users.c
parentcbf702f51f839af5a8e9c66bdae7d6a3dc363ace (diff)
downloadmonitoring-plugins-f4f92be60c94fd4e0dd4b2b4b3101543eedb706a.tar.gz
the last round of pedantic compiler warnings
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@676 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_users.c')
-rw-r--r--plugins/check_users.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_users.c b/plugins/check_users.c
index 9e18201..9f308bc 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;