Fix mod_bvalues typo

This commit is contained in:
Kurt Zeilenga 2000-06-16 20:40:12 +00:00
parent aadecc852b
commit 1048a57853
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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 );