mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
same for overlays; fix typo ("Overlays" instead of "Overlay" in parent entry)
This commit is contained in:
parent
5aadfdfedb
commit
4655f12858
2 changed files with 7 additions and 3 deletions
|
|
@ -193,7 +193,7 @@ enum {
|
|||
#define SLAPD_MONITOR_OPS_DN \
|
||||
SLAPD_MONITOR_OPS_RDN "," SLAPD_MONITOR_DN
|
||||
|
||||
#define SLAPD_MONITOR_OVERLAY_NAME "Overlay"
|
||||
#define SLAPD_MONITOR_OVERLAY_NAME "Overlays"
|
||||
#define SLAPD_MONITOR_OVERLAY_RDN \
|
||||
SLAPD_MONITOR_AT "=" SLAPD_MONITOR_OVERLAY_NAME
|
||||
#define SLAPD_MONITOR_OVERLAY_DN \
|
||||
|
|
|
|||
|
|
@ -80,6 +80,8 @@ monitor_subsys_overlay_init(
|
|||
"objectClass: %s\n"
|
||||
"structuralObjectClass: %s\n"
|
||||
"cn: Overlay %d\n"
|
||||
"%s: %s\n"
|
||||
"%s: %s\n"
|
||||
"creatorsName: %s\n"
|
||||
"modifiersName: %s\n"
|
||||
"createTimestamp: %s\n"
|
||||
|
|
@ -89,6 +91,10 @@ monitor_subsys_overlay_init(
|
|||
mi->mi_oc_monitoredObject->soc_cname.bv_val,
|
||||
mi->mi_oc_monitoredObject->soc_cname.bv_val,
|
||||
i,
|
||||
mi->mi_ad_monitoredInfo->ad_cname.bv_val,
|
||||
on->on_bi.bi_type,
|
||||
mi->mi_ad_monitorRuntimeConfig->ad_cname.bv_val,
|
||||
on->on_bi.bi_cf_ocs ? "TRUE" : "FALSE",
|
||||
mi->mi_creatorsName.bv_val,
|
||||
mi->mi_creatorsName.bv_val,
|
||||
mi->mi_startTime.bv_val,
|
||||
|
|
@ -104,8 +110,6 @@ monitor_subsys_overlay_init(
|
|||
}
|
||||
|
||||
ber_str2bv( on->on_bi.bi_type, 0, 0, &bv );
|
||||
attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo,
|
||||
&bv, NULL );
|
||||
attr_merge_normalize_one( e_overlay, mi->mi_ad_monitoredInfo,
|
||||
&bv, NULL );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue