partially revert prev commit

This commit is contained in:
Howard Chu 2009-11-06 02:20:40 +00:00
parent 86d9e86afd
commit 9a65f35f2e

View File

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