diff options
Diffstat (limited to 'plugins/check_mrtgtraf.c')
-rw-r--r-- | plugins/check_mrtgtraf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c index a5455b0..0b0f49e 100644 --- a/plugins/check_mrtgtraf.c +++ b/plugins/check_mrtgtraf.c | |||
@@ -13,6 +13,8 @@ | |||
13 | You should have received a copy of the GNU General Public License | 13 | You should have received a copy of the GNU General Public License |
14 | along with this program; if not, write to the Free Software | 14 | along with this program; if not, write to the Free Software |
15 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 15 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
16 | |||
17 | $Id$ | ||
16 | 18 | ||
17 | ******************************************************************************/ | 19 | ******************************************************************************/ |
18 | 20 | ||
@@ -38,9 +40,6 @@ unsigned long outgoing_warning_threshold = 0L; | |||
38 | unsigned long outgoing_critical_threshold = 0L; | 40 | unsigned long outgoing_critical_threshold = 0L; |
39 | 41 | ||
40 | 42 | ||
41 | |||
42 | |||
43 | |||
44 | int | 43 | int |
45 | main (int argc, char **argv) | 44 | main (int argc, char **argv) |
46 | { | 45 | { |
@@ -64,7 +63,7 @@ main (int argc, char **argv) | |||
64 | char outgoing_speed_rating[8]; | 63 | char outgoing_speed_rating[8]; |
65 | 64 | ||
66 | if (process_arguments (argc, argv) != OK) | 65 | if (process_arguments (argc, argv) != OK) |
67 | usage (_("Incorrect arguments supplied\n")); | 66 | usage (_("check_ldap: could not parse arguments\n")); |
68 | 67 | ||
69 | /* open the MRTG log file for reading */ | 68 | /* open the MRTG log file for reading */ |
70 | fp = fopen (log_file, "r"); | 69 | fp = fopen (log_file, "r"); |
@@ -259,7 +258,9 @@ process_arguments (int argc, char **argv) | |||
259 | print_help (); | 258 | print_help (); |
260 | exit (STATE_OK); | 259 | exit (STATE_OK); |
261 | case '?': /* help */ | 260 | case '?': /* help */ |
262 | usage (_("Invalid argument\n")); | 261 | printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); |
262 | print_usage (); | ||
263 | exit (STATE_UNKNOWN); | ||
263 | } | 264 | } |
264 | } | 265 | } |
265 | 266 | ||
@@ -314,7 +315,6 @@ validate_arguments (void) | |||
314 | 315 | ||
315 | 316 | ||
316 | 317 | ||
317 | |||
318 | void | 318 | void |
319 | print_help (void) | 319 | print_help (void) |
320 | { | 320 | { |