version 1.62, 2002/04/08 16:37:38
|
version 1.63, 2002/05/01 16:50:14
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.61 2002/02/15 15:33:44 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.62 2002/04/08 16:37:38 ando Exp $ */ |
/* root_dse.c - Provides the ROOT DSA-Specific Entry |
/* root_dse.c - Provides the ROOT DSA-Specific Entry |
* |
* |
* Copyright 1999-2002 The OpenLDAP Foundation. |
* Copyright 1999-2002 The OpenLDAP Foundation. |
Line 93 root_dse_info(
|
Line 93 root_dse_info(
|
if ( backends[i].be_flags & SLAP_BFLAG_GLUE_SUBORDINATE ) { |
if ( backends[i].be_flags & SLAP_BFLAG_GLUE_SUBORDINATE ) { |
continue; |
continue; |
} |
} |
for ( j = 0; backends[i].be_suffix[j] != NULL; j++ ) { |
for ( j = 0; backends[i].be_suffix[j].bv_val != NULL; j++ ) { |
vals[0] = *backends[i].be_suffix[j]; |
vals[0] = backends[i].be_suffix[j]; |
attr_merge( e, ad_namingContexts, vals ); |
attr_merge( e, ad_namingContexts, vals ); |
} |
} |
} |
} |