Fix misplaced "search" references

This commit is contained in:
Kurt Zeilenga 2002-02-08 19:10:06 +00:00
parent 59857824ff
commit ac6df28e7d
6 changed files with 10 additions and 10 deletions

View file

@ -539,7 +539,7 @@ main( int argc, char **argv )
ld = ldap_init( ldaphost, ldapport ); ld = ldap_init( ldaphost, ldapport );
if( ld == NULL ) { if( ld == NULL ) {
perror("ldapsearch: ldap_init"); perror("ldapcompare: ldap_init");
return EXIT_FAILURE; return EXIT_FAILURE;
} }

View file

@ -68,7 +68,7 @@ usage( const char *s )
" -k use Kerberos authentication\n" " -k use Kerberos authentication\n"
" -K like -k, but do only step 1 of the Kerberos bind\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" " -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" " -O props SASL security properties\n"
" -p port port on LDAP server\n" " -p port port on LDAP server\n"
" -P version procotol version (default: 3)\n" " -P version procotol version (default: 3)\n"
@ -504,7 +504,7 @@ main( int argc, char **argv )
ld = ldap_init( ldaphost, ldapport ); ld = ldap_init( ldaphost, ldapport );
if( ld == NULL ) { if( ld == NULL ) {
perror("ldapsearch: ldap_init"); perror("ldapdelete: ldap_init");
return EXIT_FAILURE; return EXIT_FAILURE;
} }

View file

@ -115,7 +115,7 @@ usage( const char *prog )
" -k use Kerberos authentication\n" " -k use Kerberos authentication\n"
" -K like -k, but do only step 1 of the Kerberos bind\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" " -M enable Manage DSA IT control (-MM to make critical)\n"
" -n show what would be done but don't actually modify\n" " -n show what would be done but don't actually update\n"
" -O props SASL security properties\n" " -O props SASL security properties\n"
" -p port port on LDAP server\n" " -p port port on LDAP server\n"
" -P version procotol version (default: 3)\n" " -P version procotol version (default: 3)\n"
@ -576,7 +576,7 @@ main( int argc, char **argv )
ld = ldap_init( ldaphost, ldapport ); ld = ldap_init( ldaphost, ldapport );
if( ld == NULL ) { if( ld == NULL ) {
perror("ldapsearch: ldap_init"); perror("ldapmodify: ldap_init");
return EXIT_FAILURE; return EXIT_FAILURE;
} }

View file

@ -82,7 +82,7 @@ usage( const char *s )
" -k use Kerberos authentication\n" " -k use Kerberos authentication\n"
" -K like -k, but do only step 1 of the Kerberos bind\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" " -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" " -O props SASL security properties\n"
" -p port port on LDAP server\n" " -p port port on LDAP server\n"
" -P version procotol version (default: 3)\n" " -P version procotol version (default: 3)\n"
@ -547,7 +547,7 @@ main(int argc, char **argv)
ld = ldap_init( ldaphost, ldapport ); ld = ldap_init( ldaphost, ldapport );
if( ld == NULL ) { if( ld == NULL ) {
perror("ldapsearch: ldap_init"); perror("ldapmodify: ldap_init");
return EXIT_FAILURE; return EXIT_FAILURE;
} }

View file

@ -44,7 +44,7 @@ usage(const char *s)
" -h host LDAP server(s)\n" " -h host LDAP server(s)\n"
" -H URI LDAP Uniform Resource Indentifier(s)\n" " -H URI LDAP Uniform Resource Indentifier(s)\n"
" -I use SASL Interactive mode\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 update\n"
" -O props SASL security properties\n" " -O props SASL security properties\n"
" -p port port on LDAP server\n" " -p port port on LDAP server\n"
" -Q use SASL Quiet mode\n" " -Q use SASL Quiet mode\n"

View file

@ -38,7 +38,7 @@ usage(const char *s)
" -h host LDAP server(s)\n" " -h host LDAP server(s)\n"
" -H URI LDAP Uniform Resource Indentifier(s)\n" " -H URI LDAP Uniform Resource Indentifier(s)\n"
" -I use SASL Interactive mode\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" " -O props SASL security properties\n"
" -p port port on LDAP server\n" " -p port port on LDAP server\n"
" -Q use SASL Quiet mode\n" " -Q use SASL Quiet mode\n"
@ -554,7 +554,7 @@ main( int argc, char *argv[] )
ld = ldap_init( ldaphost, ldapport ); ld = ldap_init( ldaphost, ldapport );
if( ld == NULL ) { if( ld == NULL ) {
perror("ldapsearch: ldap_init"); perror("ldapwhoami: ldap_init");
return EXIT_FAILURE; return EXIT_FAILURE;
} }