diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-10 06:53:22 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-10 06:53:22 (GMT) |
commit | f4f92be60c94fd4e0dd4b2b4b3101543eedb706a (patch) | |
tree | 28d25bd0ab624d82435823c940a186370947ad4d /plugins/check_mrtg.c | |
parent | cbf702f51f839af5a8e9c66bdae7d6a3dc363ace (diff) | |
download | monitoring-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_mrtg.c')
-rw-r--r-- | plugins/check_mrtg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c index 21efac2..849e636 100644 --- a/plugins/check_mrtg.c +++ b/plugins/check_mrtg.c | |||
@@ -149,8 +149,8 @@ process_arguments (int argc, char **argv) | |||
149 | { | 149 | { |
150 | int c; | 150 | int c; |
151 | 151 | ||
152 | int option_index = 0; | 152 | int option = 0; |
153 | static struct option long_options[] = { | 153 | static struct option longopts[] = { |
154 | {"logfile", required_argument, 0, 'F'}, | 154 | {"logfile", required_argument, 0, 'F'}, |
155 | {"expires", required_argument, 0, 'e'}, | 155 | {"expires", required_argument, 0, 'e'}, |
156 | {"aggregation", required_argument, 0, 'a'}, | 156 | {"aggregation", required_argument, 0, 'a'}, |
@@ -178,8 +178,8 @@ process_arguments (int argc, char **argv) | |||
178 | } | 178 | } |
179 | 179 | ||
180 | while (1) { | 180 | while (1) { |
181 | c = getopt_long (argc, argv, "hVF:e:a:v:c:w:l:u:", long_options, | 181 | c = getopt_long (argc, argv, "hVF:e:a:v:c:w:l:u:", longopts, |
182 | &option_index); | 182 | &option); |
183 | 183 | ||
184 | if (c == -1 || c == EOF) | 184 | if (c == -1 || c == EOF) |
185 | break; | 185 | break; |