summaryrefslogtreecommitdiffstats
path: root/plugins/check_ldap.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_ldap.c')
-rw-r--r--plugins/check_ldap.c8
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
19const char *progname = "check_ldap"; 21const 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
278void 280void
279print_help (void) 281print_help (void)
280{ 282{