diff --git a/clients/tools/ldapdelete.c b/clients/tools/ldapdelete.c index 448d0d2a5935b2807215acfcd1883c8ae01ef0db..57e22a7c2a1b2d632fdc85f4822912a92cc9c377 100644 --- a/clients/tools/ldapdelete.c +++ b/clients/tools/ldapdelete.c @@ -68,7 +68,7 @@ usage( const char *s ) " -k use Kerberos authentication\n" " -K like -k, but do only step 1 of the Kerberos bind\n" " -M enable Manage DSA IT control (-MM to make critical)\n" -" -n show what would be done but don't actually search\n" +" -n show what would be done but don't actually do it\n" " -O props SASL security properties\n" " -p port port on LDAP server\n" " -P version procotol version (default: 3)\n" @@ -504,7 +504,7 @@ main( int argc, char **argv ) ld = ldap_init( ldaphost, ldapport ); if( ld == NULL ) { - perror("ldapsearch: ldap_init"); + perror("ldapdelete: ldap_init"); return EXIT_FAILURE; } diff --git a/clients/tools/ldapmodify.c b/clients/tools/ldapmodify.c index 83c4e141be11c902e0d02e14ba893b8f88027bb6..6741443b89c933a9e36bfb8b5b0e03183254202a 100644 --- a/clients/tools/ldapmodify.c +++ b/clients/tools/ldapmodify.c @@ -114,7 +114,7 @@ usage( const char *prog ) " -k use Kerberos authentication\n" " -K like -k, but do only step 1 of the Kerberos bind\n" " -M enable Manage DSA IT control (-MM to make critical)\n" -" -n show what would be done but don't actually search\n" +" -n show what would be done but don't actually update\n" " -O props SASL security properties\n" " -p port port on LDAP server\n" " -P version procotol version (default: 3)\n" @@ -570,7 +570,7 @@ main( int argc, char **argv ) ld = ldap_init( ldaphost, ldapport ); if( ld == NULL ) { - perror("ldapsearch: ldap_init"); + perror("ldapmodify: ldap_init"); return EXIT_FAILURE; } diff --git a/clients/tools/ldapmodrdn.c b/clients/tools/ldapmodrdn.c index 442f81a9c02b80f4e19577452a8b2c5b9542d60d..257c38983b8eab86f300dc56b927b50f9e733c01 100644 --- a/clients/tools/ldapmodrdn.c +++ b/clients/tools/ldapmodrdn.c @@ -82,7 +82,7 @@ usage( const char *s ) " -k use Kerberos authentication\n" " -K like -k, but do only step 1 of the Kerberos bind\n" " -M enable Manage DSA IT control (-MM to make critical)\n" -" -n show what would be done but don't actually search\n" +" -n show what would be done but don't actually update\n" " -O props SASL security properties\n" " -p port port on LDAP server\n" " -P version procotol version (default: 3)\n" @@ -547,7 +547,7 @@ main(int argc, char **argv) ld = ldap_init( ldaphost, ldapport ); if( ld == NULL ) { - perror("ldapsearch: ldap_init"); + perror("ldapmodrdn: ldap_init"); return EXIT_FAILURE; } diff --git a/clients/tools/ldappasswd.c b/clients/tools/ldappasswd.c index 10c63cd1eb368e134f339c4726a0284b8983f98a..50e4d7d46f2d9292750ae3ed14851631b8e5078c 100644 --- a/clients/tools/ldappasswd.c +++ b/clients/tools/ldappasswd.c @@ -44,7 +44,7 @@ usage(const char *s) " -h host LDAP server(s)\n" " -H URI LDAP Uniform Resource Indentifier(s)\n" " -I use SASL Interactive mode\n" -" -n show what would be done but don't actually search\n" +" -n show what would be done but don't actually do it\n" " -O props SASL security properties\n" " -p port port on LDAP server\n" " -Q use SASL Quiet mode\n" @@ -560,7 +560,7 @@ main( int argc, char *argv[] ) ld = ldap_init( ldaphost, ldapport ); if( ld == NULL ) { - perror("ldapsearch: ldap_init"); + perror("ldappasswd: ldap_init"); return EXIT_FAILURE; }