| 236 | } |
| 237 | |
| 238 | int FTPClientWrapperSSL::Rename(const char * from, const char * to) { |
| 239 | int retcode = m_client.RenameFile(from, to); |
| 240 | |
| 241 | return OnReturn((retcode == UTE_SUCCESS)?0:-1); |
| 242 | } |
| 243 | |
| 244 | int FTPClientWrapperSSL::ChmodFile(const char * path, const char * mode) { |
| 245 | int retcode = m_client.ChmodFile(path, mode); |
nothing calls this directly
no test coverage detected