mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#8498 slapadd: silence warning for NULL entry
This commit is contained in:
parent
543230c9e7
commit
2939df1a1d
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ again:
|
|||
attr_merge( e, slap_schema.si_ad_modifyTimestamp, vals, NULL );
|
||||
}
|
||||
|
||||
if ( SLAP_SINGLE_SHADOW(be) && got != GOT_ALL ) {
|
||||
if ( SLAP_SINGLE_SHADOW(be) && got != GOT_ALL && e->e_name.bv_len ) {
|
||||
Debug(LDAP_DEBUG_ANY,
|
||||
"%s: warning, missing attrs %s%s%s from entry dn=\"%s\"\n",
|
||||
progname,
|
||||
|
|
|
|||
Loading…
Reference in a new issue