mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 10:09:43 -05:00
Use get_supported_extension() accessor instead of supportedextensions[] extern.
This commit is contained in:
parent
bbeec83869
commit
bd922dcd3b
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ 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 = supportedExtensions[i];
|
||||
val.bv_val = get_supported_extension(i);
|
||||
val.bv_len = strlen( val.bv_val );
|
||||
attr_merge( e, "supportedExtension", vals );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue