mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
Revert/Fix prev commit
This commit is contained in:
parent
7fd05f235c
commit
5788e12926
@ -1131,6 +1131,18 @@ print_entry(
|
||||
}
|
||||
write_ldif( LDIF_PUT_VALUE, "dn", bv.bv_val, bv.bv_len );
|
||||
|
||||
rc = ldap_get_entry_controls( ld, entry, &ctrls );
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
fprintf(stderr, _("print_entry: %d\n"), rc );
|
||||
ldap_perror( ld, "ldap_get_entry_controls" );
|
||||
exit( EXIT_FAILURE );
|
||||
}
|
||||
|
||||
if( ctrls ) {
|
||||
print_ctrls( ctrls );
|
||||
ldap_controls_free( ctrls );
|
||||
}
|
||||
|
||||
if ( includeufn ) {
|
||||
if( ufn == NULL ) {
|
||||
ufn = ldap_dn2ufn( bv.bv_val );
|
||||
@ -1199,17 +1211,6 @@ print_entry(
|
||||
ber_memfree( bvals );
|
||||
}
|
||||
}
|
||||
rc = ldap_pvt_get_controls( ber, &ctrls );
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
fprintf(stderr, _("print_entry: %d\n"), rc );
|
||||
ldap_perror( ld, "ldap_pvt_get_controls" );
|
||||
exit( EXIT_FAILURE );
|
||||
}
|
||||
|
||||
if( ctrls ) {
|
||||
print_ctrls( ctrls );
|
||||
ldap_controls_free( ctrls );
|
||||
}
|
||||
|
||||
if( ber != NULL ) {
|
||||
ber_free( ber, 0 );
|
||||
|
Loading…
Reference in New Issue
Block a user