We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent effffa7 commit b108c46Copy full SHA for b108c46
1 file changed
Sources/ftpConnection.cpp
@@ -395,7 +395,7 @@ void ftpConnection::cmdRnto(std::string const& arg) {
395
fileName = pwd + arg;
396
}
397
#ifdef NXDK
398
- if (MoveFileA(rnfr.c_str(), fileName.c_str())) {
+ if (MoveFileA(unixToDosPath(rnfr).c_str(), unixToDosPath(fileName).c_str())) {
399
sendStdString(replies[12]);
400
} else {
401
sendStdString(replies[13]);
0 commit comments