mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-18 15:20:35 +08:00
Add missing fprintf param
This commit is contained in:
parent
ef3fb24f39
commit
f6a1c05b68
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user