--- servers/slapd/root_dse.c 2004/01/01 18:16:34 1.81.2.9 +++ servers/slapd/root_dse.c 2003/11/27 00:17:16 1.85 @@ -1,8 +1,8 @@ /* root_dse.c - Provides the Root DSA-Specific Entry */ -/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.81.2.8 2003/12/29 18:10:40 kurt Exp $ */ +/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.84 2003/09/19 16:41:28 kurt Exp $ */ /* This work is part of OpenLDAP Software . * - * Copyright 1999-2004 The OpenLDAP Foundation. + * Copyright 1999-2003 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,19 +25,17 @@ #include "lber_pvt.h" #ifdef LDAP_SLAPI -#include "slapi/slapi.h" +#include "slapi.h" #endif static struct berval supportedFeatures[] = { - BER_BVC(LDAP_FEATURE_ALL_OP_ATTRS), /* All Op Attrs (+) */ - BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attrs List (@class) */ - BER_BVC(LDAP_FEATURE_ABSOLUTE_FILTERS), /* (&) and (|) search filters */ + BER_BVC(LDAP_FEATURE_ALL_OPERATIONAL_ATTRS), /* All Op Attrs (+) */ + BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attrs List (+person) */ + BER_BVC(LDAP_FEATURE_ABSOLUTE_FILTERS), /* (&) and (|) search filters */ BER_BVC(LDAP_FEATURE_LANGUAGE_TAG_OPTIONS), /* Language Tag Options */ - BER_BVC(LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS),/* Language Range Options */ - + BER_BVC(LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS), /* Language Range Options */ #ifdef LDAP_DEVEL - BER_BVC(LDAP_FEATURE_SUBORDINATE_SCOPE), /* "children" search scope */ - BER_BVC(LDAP_FEATURE_MODIFY_INCREMENT), /* Modify/increment */ + BER_BVC(LDAP_FEATURE_MODIFY_INCREMENT), /* Modify/increment */ #endif {0,NULL} }; @@ -153,7 +151,7 @@ root_dse_info( #ifdef LDAP_SLAPI /* netscape supportedExtension */ - for ( i = 0; (bv = slapi_int_get_supported_extop(i)) != NULL; i++ ) { + for ( i = 0; (bv = ns_get_supported_extop(i)) != NULL; i++ ) { vals[0] = *bv; if( attr_merge( e, ad_supportedExtension, vals, NULL )) { return LDAP_OTHER;