diff options
author | norbim1 <norbim1@users.noreply.github.com> | 2020-10-29 11:40:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 11:40:41 +0100 |
commit | 991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5 (patch) | |
tree | 157ce3eda8b370895dc5cf5a1a3a794607b9bf6b | |
parent | fix silly typo (diff) | |
download | FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.tar FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.tar.gz FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.tar.bz2 FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.tar.lz FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.tar.xz FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.tar.zst FTPCLientServer-991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5.zip |
-rw-r--r-- | FTPClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPClient.cpp b/FTPClient.cpp index 51456f9..4ea31be 100644 --- a/FTPClient.cpp +++ b/FTPClient.cpp @@ -19,9 +19,9 @@ const FTPClient::Status &FTPClient::transfer(const String &localFileName, const _remoteFileName = remoteFileName; _direction = direction; - if (direction & FTP_GET) + if (direction & FTP_GET_NONBLOCKING) file = THEFS.open(localFileName, "w"); - else if (direction & FTP_PUT) + else if (direction & FTP_PUT_NONBLOCKING) file = THEFS.open(localFileName, "r"); if (!file) |