| 200 | } |
| 201 | |
| 202 | int FTPClientWrapperSSH::Rename(const char * from, const char * to) { |
| 203 | int retcode = sftp_rename(m_sftpsession, from, to); |
| 204 | |
| 205 | return OnReturn((retcode == 0)?0:-1); |
| 206 | } |
| 207 | |
| 208 | int FTPClientWrapperSSH::ChmodFile(const char * path, const char * mode) { |
| 209 |
nothing calls this directly
no outgoing calls
no test coverage detected