summaryrefslogtreecommitdiffstats
path: root/plugins/check_load.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_load.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_load.c')
-rw-r--r--plugins/check_load.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/check_load.c b/plugins/check_load.c
index 956f907..babe84b 100644
--- a/plugins/check_load.c
+++ b/plugins/check_load.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
@@ -75,7 +77,7 @@ main (int argc, char **argv)
75 textdomain (PACKAGE); 77 textdomain (PACKAGE);
76 78
77 if (process_arguments (argc, argv) == ERROR) 79 if (process_arguments (argc, argv) == ERROR)
78 usage ("failed processing arguments\n"); 80 usage (_("check_load: could not parse arguments\n"));
79 81
80#if HAVE_GETLOADAVG==1 82#if HAVE_GETLOADAVG==1
81 result = getloadavg (la, 3); 83 result = getloadavg (la, 3);
@@ -227,7 +229,9 @@ process_arguments (int argc, char **argv)
227 print_help (); 229 print_help ();
228 exit (STATE_OK); 230 exit (STATE_OK);
229 case '?': /* help */ 231 case '?': /* help */
230 usage (_("Invalid argument\n")); 232 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
233 print_usage ();
234 exit (STATE_UNKNOWN);
231 } 235 }
232 } 236 }
233 237