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

Use get_supported_extension() accessor instead of supportedextensions[] extern.

parent bbeec838
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment