NFS Encoding Bug
Brought to you by:
cdemon
Reported by Conrad Herrmann:
Using a windows client with LATIN1 directory listings will be messed up. Seems like a problem of the underlying WebNFS API since Xdr.java uses only the default codepage:
public String xdr_string() {
int len = xdr_int();
String s = new String(buf, off, len);
xdr_skip(len);
return s;
}