Fix typo in error message

This commit is contained in:
Kurt Zeilenga 2004-09-20 04:41:19 +00:00
parent 0ac9b6889e
commit 50dd91de39

View file

@ -709,7 +709,7 @@ tool_conn_setup( int not, void (*private_setup)( LDAP * ) )
rc = ldap_initialize( &ld, ldapuri );
if( rc != LDAP_SUCCESS ) {
fprintf( stderr,
"Could not create LDAP session handle for URI=%s %d): %s\n",
"Could not create LDAP session handle for URI=%s (%d): %s\n",
ldapuri, rc, ldap_err2string(rc) );
exit( EXIT_FAILURE );
}