summaryrefslogtreecommitdiffstats
path: root/plugins/check_udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_udp.c')
-rw-r--r--plugins/check_udp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_udp.c b/plugins/check_udp.c
index bd5de58..5aaf3a7 100644
--- a/plugins/check_udp.c
+++ b/plugins/check_udp.c
@@ -105,8 +105,8 @@ process_arguments (int argc, char **argv)
105{ 105{
106 int c; 106 int c;
107 107
108 int option_index = 0; 108 int option = 0;
109 static struct option long_options[] = { 109 static struct option longopts[] = {
110 {"hostname", required_argument, 0, 'H'}, 110 {"hostname", required_argument, 0, 'H'},
111 {"critical", required_argument, 0, 'c'}, 111 {"critical", required_argument, 0, 'c'},
112 {"warning", required_argument, 0, 'w'}, 112 {"warning", required_argument, 0, 'w'},
@@ -133,7 +133,7 @@ process_arguments (int argc, char **argv)
133 } 133 }
134 134
135 while (1) { 135 while (1) {
136 c = getopt_long (argc, argv, "+hVvH:e:s:c:w:t:p:", long_options, &option_index); 136 c = getopt_long (argc, argv, "+hVvH:e:s:c:w:t:p:", longopts, &option);
137 137
138 if (c == -1 || c == EOF || c == 1) 138 if (c == -1 || c == EOF || c == 1)
139 break; 139 break;