mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Solaris doesn't like being passed NULL pointers to [vsf[n]]printf
This commit is contained in:
parent
ac590d6b55
commit
b838f3e2a1
1 changed files with 3 additions and 1 deletions
|
|
@ -1564,7 +1564,9 @@ config_suffix(ConfigArgs *c)
|
|||
if ( notallowed != NULL ) {
|
||||
Debug(LDAP_DEBUG_ANY,
|
||||
"%s: suffix <%s> not allowed in %s database.\n",
|
||||
c->log, c->value_dn.bv_val, notallowed );
|
||||
c->log,
|
||||
BER_BVISNULL( &c->value_dn ) ? "NULL" : c->value_dn.bv_val,
|
||||
notallowed );
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue