mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
For ITS#9309 fix check for duplicate overlays
and pass error message back to frontend
This commit is contained in:
parent
c8c39b8468
commit
633d40b0ac
1 changed files with 10 additions and 10 deletions
|
|
@ -1355,16 +1355,16 @@ overlay_config( BackendDB *be, const char *ov, int idx, BackendInfo **res, Confi
|
|||
if ( be->bd_info == frontendDB->bd_info || SLAP_ISGLOBALOVERLAY( be ) ) {
|
||||
isglobal = 1;
|
||||
if ( on->on_bi.bi_flags & SLAPO_BFLAG_DBONLY ) {
|
||||
Debug( LDAP_DEBUG_ANY, "overlay_config(): "
|
||||
"overlay \"%s\" cannot be global.\n",
|
||||
ov );
|
||||
snprintf( cr->msg, sizeof( cr->msg ), "overlay_config(): "
|
||||
"overlay \"%s\" cannot be global.", ov );
|
||||
Debug( LDAP_DEBUG_ANY, "%s\n", cr->msg );
|
||||
return 1;
|
||||
}
|
||||
|
||||
} else if ( on->on_bi.bi_flags & SLAPO_BFLAG_GLOBONLY ) {
|
||||
Debug( LDAP_DEBUG_ANY, "overlay_config(): "
|
||||
"overlay \"%s\" can only be global.\n",
|
||||
ov );
|
||||
snprintf( cr->msg, sizeof( cr->msg ), "overlay_config(): "
|
||||
"overlay \"%s\" can only be global.", ov );
|
||||
Debug( LDAP_DEBUG_ANY, "%s\n", cr->msg );
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
@ -1427,10 +1427,10 @@ overlay_config( BackendDB *be, const char *ov, int idx, BackendInfo **res, Confi
|
|||
|
||||
} else {
|
||||
if ( overlay_is_inst( be, ov ) ) {
|
||||
if ( SLAPO_SINGLE( be ) ) {
|
||||
Debug( LDAP_DEBUG_ANY, "overlay_config(): "
|
||||
"overlay \"%s\" already in list\n",
|
||||
ov );
|
||||
if ( on->on_bi.bi_flags & SLAPO_BFLAG_SINGLE ) {
|
||||
snprintf( cr->msg, sizeof( cr->msg ), "overlay_config(): "
|
||||
"overlay \"%s\" already in list", ov );
|
||||
Debug( LDAP_DEBUG_ANY, "%s\n", cr->msg );
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue