summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)