Fix typo in filter_value_unescape()

This commit is contained in:
Hallvard Furuseth 1999-08-28 22:06:52 +00:00
parent 1ee09a4d09
commit 635a666359

View file

@ -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 ) {