mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
Fix reversed assertion logic
This commit is contained in:
parent
e58fe652dc
commit
a2804649a5
1 changed files with 1 additions and 1 deletions
|
|
@ -1611,7 +1611,7 @@ numericStringNormalize(
|
|||
|
||||
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