]> git.sur5r.net Git - openldap/commitdiff
Use get_supported_extension() accessor instead of supportedextensions[] extern.
authorMark Valence <mrv@openldap.org>
Wed, 17 Nov 1999 23:29:30 +0000 (23:29 +0000)
committerMark Valence <mrv@openldap.org>
Wed, 17 Nov 1999 23:29:30 +0000 (23:29 +0000)
servers/slapd/root_dse.c

index fbaa475e68b30fbae5fe1001e3ef34ccc60b732e..08272d71776cf9904981a1cbcfc1a640c8d7b84f 100644 (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 );
        }