mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-10 06:13:19 -05:00
Fix reversed assert logic
This commit is contained in:
parent
e651635801
commit
6c3e915ceb
1 changed files with 2 additions and 2 deletions
|
|
@ -602,7 +602,7 @@ UTF8StringNormalize(
|
|||
|
||||
assert( *newval->bv_val );
|
||||
assert( newval->bv_val < p );
|
||||
assert( p >= q );
|
||||
assert( q <= p );
|
||||
|
||||
/* cannot start with a space */
|
||||
assert( !ldap_utf8_isspace(newval->bv_val) );
|
||||
|
|
@ -1950,7 +1950,7 @@ IA5StringNormalize(
|
|||
|
||||
assert( *newval->bv_val );
|
||||
assert( newval->bv_val < p );
|
||||
assert( p <= q );
|
||||
assert( q <= p );
|
||||
|
||||
/* cannot start with a space */
|
||||
assert( !ASCII_SPACE(*newval->bv_val) );
|
||||
|
|
|
|||
Loading…
Reference in a new issue