summaryrefslogtreecommitdiffstats
path: root/plugins/check_load.c
diff options
context:
space:
mode:
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