Skip to content
Snippets Groups Projects
Commit 6b23a78a authored by Mark Valence's avatar Mark Valence
Browse files

Add supportedACIMechanisms to root DSE (when compiling with ACIs enabled).

parent d93ef01a
Branches
Tags
No related merge requests found
......@@ -75,7 +75,6 @@ root_dse_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
/* supportedExtension */
for ( i=0; (val.bv_val = get_supported_extension(i)) != NULL; i++ ) {
val.bv_val = get_supported_extension(i);
val.bv_len = strlen( val.bv_val );
attr_merge( e, "supportedExtension", vals );
}
......@@ -97,6 +96,14 @@ root_dse_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
}
}
#ifdef SLAPD_ACI_ENABLED
/* supportedACIMechanisms */
for ( i=0; (val.bv_val = get_supported_acimech(i)) != NULL; i++ ) {
val.bv_len = strlen( val.bv_val );
attr_merge( e, "supportedACIMechanisms", vals );
}
#endif
if ( default_referral != NULL ) {
attr_merge( e, "ref", default_referral );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment