]> git.sur5r.net Git - openldap/commitdiff
sync with HEAD
authorKurt Zeilenga <kurt@openldap.org>
Mon, 12 Apr 2004 19:53:23 +0000 (19:53 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 12 Apr 2004 19:53:23 +0000 (19:53 +0000)
servers/slapd/back-shell/modify.c

index 2115217a4d53779ae431957d03f5e2702b06a064..6dbd811e912a15682361aafab3e2341f1b2acc80 100644 (file)
@@ -103,10 +103,10 @@ shell_back_modify(
                        break;
                }
 
-               if( mod->sm_bvalues != NULL ) {
-                       for ( i = 0; mod->sm_bvalues[i].bv_val != NULL; i++ ) {
+               if( mod->sm_values != NULL ) {
+                       for ( i = 0; mod->sm_values[i].bv_val != NULL; i++ ) {
                                fprintf( wfp, "%s: %s\n", mod->sm_desc->ad_cname.bv_val,
-                                       mod->sm_bvalues[i].bv_val /* binary! */ );
+                                       mod->sm_values[i].bv_val /* binary! */ );
                        }
                }