mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-18 12:54:09 -05:00
ITS#9427 fix issuerAndThisUpdateCheck
This commit is contained in:
parent
354e678ce9
commit
27428b96f5
1 changed files with 1 additions and 1 deletions
|
|
@ -3884,7 +3884,7 @@ issuerAndThisUpdateCheck(
|
|||
|
||||
if ( in->bv_len < STRLENOF( "{issuer \"\",thisUpdate \"YYMMDDhhmmssZ\"}" ) ) return LDAP_INVALID_SYNTAX;
|
||||
|
||||
if ( in->bv_val[0] != '{' && in->bv_val[in->bv_len-1] != '}' ) {
|
||||
if ( in->bv_val[0] != '{' || in->bv_val[in->bv_len-1] != '}' ) {
|
||||
return LDAP_INVALID_SYNTAX;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue