mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 22:20:28 -05:00
Add missing fprintf param
This commit is contained in:
parent
ef3fb24f39
commit
f6a1c05b68
5 changed files with 10 additions and 5 deletions
|
|
@ -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…
Reference in a new issue