From: Kurt Zeilenga Date: Mon, 20 Sep 2004 04:41:19 +0000 (+0000) Subject: Fix typo in error message X-Git-Tag: OPENLDAP_REL_ENG_2_3_0ALPHA~516 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=50dd91de39d123b2a01bf79951910d42e07fffc8;p=openldap Fix typo in error message --- diff --git a/clients/tools/common.c b/clients/tools/common.c index 5617d49c1e..a37d5a688a 100644 --- a/clients/tools/common.c +++ b/clients/tools/common.c @@ -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 ); }