]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Fix mod_bvalues typo
authorKurt Zeilenga <kurt@openldap.org>
Fri, 16 Jun 2000 20:40:12 +0000 (20:40 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 16 Jun 2000 20:40:12 +0000 (20:40 +0000)
CHANGES
libraries/libldap/add.c

diff --git a/CHANGES b/CHANGES
index 533ce4d35c96de8df9aac50ede2f87b92a105450..d2593b35820a5c8f4c2fa76ad221eb405a2a0489 100644 (file)
--- a/CHANGES
+++ b/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
 
index 53d766a63cc20c8c545ff050c85d135e7eb3271c..429aca8d1dcb574c05504c9664eef05bfbb6dd5d 100644 (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 );