mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Fix mod_bvalues typo
This commit is contained in:
parent
aadecc852b
commit
1048a57853
2 changed files with 2 additions and 1 deletions
1
CHANGES
1
CHANGES
|
|
@ -5,6 +5,7 @@ Changes included in OpenLDAP 1.2.12 Engineering
|
|||
Fixed ldapmodify ldaphost NULL bug
|
||||
Fixed ldapsearch uninitialized fp bug
|
||||
Fixed Pth initialization bug
|
||||
Fixed libldap/add mod_bvalues typo
|
||||
Build Environment
|
||||
Ignore make clean rm failure
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ ldap_add( LDAP *ld, char *dn, LDAPMod **attrs )
|
|||
for ( i = 0; attrs[i] != NULL; i++ ) {
|
||||
if ( ( attrs[i]->mod_op & LDAP_MOD_BVALUES) != 0 ) {
|
||||
rc = ber_printf( ber, "{s[V]}", attrs[i]->mod_type,
|
||||
attrs[i]->mod_values );
|
||||
attrs[i]->mod_bvalues );
|
||||
} else {
|
||||
rc = ber_printf( ber, "{s[v]}", attrs[i]->mod_type,
|
||||
attrs[i]->mod_values );
|
||||
|
|
|
|||
Loading…
Reference in a new issue