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

This commit is contained in:
Mark Valence 1999-11-17 23:29:30 +00:00
parent bbeec83869
commit bd922dcd3b

View File

@ -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 );
}