mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 04:59:39 -05:00
Fix DN struct berval issue
This commit is contained in:
parent
f6085d3f82
commit
fa30a46446
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ shell_back_unbind(
|
|||
fprintf( wfp, "UNBIND\n" );
|
||||
fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
|
||||
print_suffixes( wfp, be );
|
||||
fprintf( wfp, "dn: %s\n", (conn->c_dn ? conn->c_dn : "") );
|
||||
fprintf( wfp, "dn: %s\n", (conn->c_dn.bv_len ? conn->c_dn.bv_val : "") );
|
||||
fclose( wfp );
|
||||
|
||||
/* no response to unbind */
|
||||
|
|
|
|||
Loading…
Reference in a new issue