Posted by: DaveyC
« on: September 13, 2013, 01:06:09 AM »I reported the same problem a while ago but not with the same detail. On my system, z/OS, it's much worse. The extensionless file manger is so broken it's not even usable.
Cannot stat "/tmp/root/se": Unable to canonicalize the path
This only happens if the pasted path is not already in the combo box drop list. if( cwd=="" ) {
// This should never happen
cwd=old_RemoteCWD;
}
However, in this case it is happening. When I paste a new path, this function seems to get called twice, the first time, this happens, and the second time the text is "messed up" as I described. If I simply change it to: if( cwd=="" ) {
return;
}
Then the problem (seems) to go away.