mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-09 22:04:12 -05:00
Fix typo in filter_value_unescape()
This commit is contained in:
parent
1ee09a4d09
commit
635a666359
1 changed files with 3 additions and 1 deletions
|
|
@ -458,7 +458,9 @@ filter_value_unescape( char *fval )
|
|||
/* escape at end of string */
|
||||
return -1;
|
||||
|
||||
} else if (( v1 = hex2value( fval[v] )) < 0 ) {
|
||||
}
|
||||
|
||||
if (( v1 = hex2value( fval[v] )) >= 0 ) {
|
||||
/* LDAPv3 escape */
|
||||
|
||||
if (( v2 = hex2value( fval[v+1] )) < 0 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue