Fix ad_inlist typo on oc->required

This commit is contained in:
Howard Chu 2002-02-15 14:48:01 +00:00
parent 2aec424646
commit ce4466655e

View File

@ -456,7 +456,7 @@ int ad_inlist(
int i; int i;
for ( i = 0; oc->soc_required[i] != NULL; i++ ) { for ( i = 0; oc->soc_required[i] != NULL; i++ ) {
rc = is_at_subtype( desc->ad_type, rc = is_at_subtype( desc->ad_type,
oc->soc_allowed[i] ); oc->soc_required[i] );
if( rc ) return 1; if( rc ) return 1;
} }
} }