]> git.sur5r.net Git - openldap/commitdiff
Add missing fprintf param
authorKurt Zeilenga <kurt@openldap.org>
Fri, 25 Aug 2000 23:51:10 +0000 (23:51 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 25 Aug 2000 23:51:10 +0000 (23:51 +0000)
clients/tools/ldapdelete.c
clients/tools/ldapmodify.c
clients/tools/ldapmodrdn.c
clients/tools/ldappasswd.c
clients/tools/ldapsearch.c

index 1c735b845e07814180ebe242ee55d6348db93859..c01c90f3f8a2a05fb56e924599b76530746c05b8 100644 (file)
@@ -509,7 +509,8 @@ main( int argc, char **argv )
        }
 
        if( ld == NULL ) {
-               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n", rc );
+               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n",
+                       rc, ldap_err2string(rc) );
                return EXIT_FAILURE;
        }
 
index 717563fdce02e62b8e8492168192a698b6dff4d9..2be61b8dad7250196c1b33552caf5c708fb5938b 100644 (file)
@@ -576,7 +576,8 @@ main( int argc, char **argv )
        }
 
        if( ld == NULL ) {
-               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n", rc );
+               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n",
+                       rc, ldap_err2string(rc) );
                return EXIT_FAILURE;
        }
 
index e958e6077090a2e62e2e7d346beebbd3459145be..2e68fa816e42fcb4908a36a47021e3ae22ef88f3 100644 (file)
@@ -552,7 +552,8 @@ main(int argc, char **argv)
        }
 
        if( ld == NULL ) {
-               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n", rc );
+               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n",
+                       rc, ldap_err2string(rc) );
                return EXIT_FAILURE;
        }
 
index ad5af860108cdf15c856a1de2a57f9e5226bbfe0..9a6cb8838a5ef16903122385c803cf656b051269 100644 (file)
@@ -580,7 +580,8 @@ main( int argc, char *argv[] )
        }
 
        if( ld == NULL ) {
-               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n", rc );
+               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n",
+                       rc, ldap_err2string(rc) );
                return EXIT_FAILURE;
        }
 
index 3bb90f945427807364ad71854e208c34bcec1c46..dd2712bdcdb95f3a6ed155b2d16e2639b037fa79 100644 (file)
@@ -680,7 +680,8 @@ main( int argc, char **argv )
        }
 
        if( ld == NULL ) {
-               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n", rc );
+               fprintf( stderr, "Could not create LDAP session handle (%d): %s\n",
+                       rc, ldap_err2string(rc) );
                return EXIT_FAILURE;
        }