mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Fix undefined attribute type error text usage
This commit is contained in:
parent
970abe2637
commit
891079fb09
1 changed files with 2 additions and 1 deletions
|
|
@ -372,7 +372,8 @@ int slap_modlist2mods(
|
|||
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
slap_mods_free( mod );
|
||||
snprintf( textbuf, textlen, "%s: %s", ml->ml_type, text );
|
||||
snprintf( textbuf, textlen, "%s: %s",
|
||||
ml->ml_type, *text );
|
||||
*text = textbuf;
|
||||
return rc;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue