From: Howard Chu Date: Fri, 15 Feb 2002 14:48:01 +0000 (+0000) Subject: Fix ad_inlist typo on oc->required X-Git-Tag: OPENLDAP_REL_ENG_2_1_BP~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ce4466655e5d43d01159bcde5c6f4c2353c653ae;p=openldap Fix ad_inlist typo on oc->required --- diff --git a/servers/slapd/ad.c b/servers/slapd/ad.c index bd43d0eb7a..7836466d54 100644 --- a/servers/slapd/ad.c +++ b/servers/slapd/ad.c @@ -456,7 +456,7 @@ int ad_inlist( int i; for ( i = 0; oc->soc_required[i] != NULL; i++ ) { rc = is_at_subtype( desc->ad_type, - oc->soc_allowed[i] ); + oc->soc_required[i] ); if( rc ) return 1; } }