|
Relates :
|
|
|
Relates :
|
Please first read Comments section here and in 6317399.
In com/sun/jndi/ldap/Filter.java (5.0u4):
// wrong line 433
dprint(", type: ", Integer.toString(filterType, 16).getBytes());
// correction:
dprint(", type: ", Integer.toString(filterType, 16).getBytes("ISO-8859-1"));
|