diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-11-14 02:26:34 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-11-14 02:26:34 (GMT) |
commit | 2a68978c564e53cddc90882ee7776a43839dfcff (patch) | |
tree | 7c8432f893e4c43f2d20d022ba8ccdc05752e4e6 /plugins/check_mrtg.c | |
parent | 9e009c4b1128352c6039d25b39213fd480e9b055 (diff) | |
download | monitoring-plugins-2a68978c564e53cddc90882ee7776a43839dfcff.tar.gz |
remove call_getopt and ssprintf
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@191 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mrtg.c')
-rw-r--r-- | plugins/check_mrtg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c index 4d297aa..80c9b00 100644 --- a/plugins/check_mrtg.c +++ b/plugins/check_mrtg.c | |||
@@ -332,7 +332,7 @@ process_arguments (int argc, char **argv) | |||
332 | value_warning_threshold = strtoul (argv[c++], NULL, 10); | 332 | value_warning_threshold = strtoul (argv[c++], NULL, 10); |
333 | } | 333 | } |
334 | 334 | ||
335 | if (vargc > c && alue_critical_threshold == 0) { | 335 | if (argc > c && value_critical_threshold == 0) { |
336 | value_critical_threshold = strtoul (argv[c++], NULL, 10); | 336 | value_critical_threshold = strtoul (argv[c++], NULL, 10); |
337 | } | 337 | } |
338 | 338 | ||