summaryrefslogtreecommitdiffstats
path: root/plugins/check_mrtgtraf.c
diff options
context:
space:
mode:
authorBenoit Mortier <opensides@users.sourceforge.net>2004-12-01 23:54:51 (GMT)
committerBenoit Mortier <opensides@users.sourceforge.net>2004-12-01 23:54:51 (GMT)
commitd19edd4043c498626fe68308005947975ef0a697 (patch)
tree7a213ee16f9331e928b1c32aa6c521c05519db58 /plugins/check_mrtgtraf.c
parent1d8128e328f714258b7fec0c62245e1d187e0439 (diff)
downloadmonitoring-plugins-d19edd4043c498626fe68308005947975ef0a697.tar.gz
standardize localization string
standardize unknow arguments git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@969 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mrtgtraf.c')
-rw-r--r--plugins/check_mrtgtraf.c12
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;
38unsigned long outgoing_critical_threshold = 0L; 40unsigned long outgoing_critical_threshold = 0L;
39 41
40 42
41
42
43
44int 43int
45main (int argc, char **argv) 44main (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
318void 318void
319print_help (void) 319print_help (void)
320{ 320{