diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-01 23:54:51 (GMT) |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-01 23:54:51 (GMT) |
commit | d19edd4043c498626fe68308005947975ef0a697 (patch) | |
tree | 7a213ee16f9331e928b1c32aa6c521c05519db58 /plugins/check_ldap.c | |
parent | 1d8128e328f714258b7fec0c62245e1d187e0439 (diff) | |
download | monitoring-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_ldap.c')
-rw-r--r-- | plugins/check_ldap.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index 6987411..0dc0380 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
@@ -14,6 +14,8 @@ | |||
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 | 16 | ||
17 | $Id$ | ||
18 | |||
17 | ******************************************************************************/ | 19 | ******************************************************************************/ |
18 | 20 | ||
19 | const char *progname = "check_ldap"; | 21 | const char *progname = "check_ldap"; |
@@ -242,8 +244,9 @@ process_arguments (int argc, char **argv) | |||
242 | #endif | 244 | #endif |
243 | break; | 245 | break; |
244 | default: | 246 | default: |
245 | usage (_("check_ldap: could not parse unknown arguments\n")); | 247 | printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); |
246 | break; | 248 | print_usage (); |
249 | exit (STATE_UNKNOWN); | ||
247 | } | 250 | } |
248 | } | 251 | } |
249 | 252 | ||
@@ -274,7 +277,6 @@ validate_arguments () | |||
274 | 277 | ||
275 | 278 | ||
276 | 279 | ||
277 | |||
278 | void | 280 | void |
279 | print_help (void) | 281 | print_help (void) |
280 | { | 282 | { |