mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
partially revert prev commit
This commit is contained in:
parent
86d9e86afd
commit
9a65f35f2e
@ -2138,8 +2138,7 @@ strval2str( struct berval *val, char *str, unsigned flags, ber_len_t *len )
|
||||
* there might be some chars we want to escape in form
|
||||
* of a couple of hexdigits for optimization purposes
|
||||
*/
|
||||
if ( cl > 1 ) {
|
||||
if ( !LDAP_DN_IS_PRETTY( flags )
|
||||
if ( ( cl > 1 && !LDAP_DN_IS_PRETTY( flags ) )
|
||||
#ifdef PRETTY_ESCAPE
|
||||
#if 0
|
||||
|| LDAP_DN_WILLESCAPE_HEX( flags, val->bv_val[ s ] )
|
||||
@ -2161,11 +2160,10 @@ strval2str( struct berval *val, char *str, unsigned flags, ber_len_t *len )
|
||||
d += 2;
|
||||
}
|
||||
|
||||
} else {
|
||||
} else if ( cl > 1 ) {
|
||||
for ( ; cl--; ) {
|
||||
str[ d++ ] = val->bv_val[ s++ ];
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
#ifdef PRETTY_ESCAPE
|
||||
|
Loading…
Reference in New Issue
Block a user