DNs may include NULs

This commit is contained in:
Pierangelo Masarati 2002-02-13 19:18:31 +00:00
parent 6ebe49f1b6
commit 3cc674589d

View File

@ -572,7 +572,8 @@ dnMatch(
match = value->bv_len - asserted->bv_len;
if ( match == 0 ) {
match = strcmp( value->bv_val, asserted->bv_val );
match = memcmp( value->bv_val, asserted->bv_val,
value->bv_len );
}
#ifdef NEW_LOGGING