summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornorbim1 <norbim1@users.noreply.github.com>2020-10-29 11:40:41 +0100
committerGitHub <noreply@github.com>2020-10-29 11:40:41 +0100
commit991f8c688753e294554a7eaf7ac8eeb0eb8e4ea5 (patch)
tree157ce3eda8b370895dc5cf5a1a3a794607b9bf6b
parentfix silly typo (diff)
downloadFTPCLientServer-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.cpp4
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)