From f4ebb57dbc46150b219a2f045543112cc7afc900 Mon Sep 17 00:00:00 2001 From: SCratORS Date: Mon, 15 Nov 2021 13:20:45 +0300 Subject: Update FTPServer.cpp --- FTPServer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FTPServer.cpp b/FTPServer.cpp index 0e87fba..98f661e 100644 --- a/FTPServer.cpp +++ b/FTPServer.cpp @@ -46,10 +46,11 @@ FTPServer::FTPServer(FS &_FSImplementation) : FTPCommon(_FSImplementation) aTimeout.resetToNeverExpires(); } -void FTPServer::begin(const String &uname, const String &pword) +void FTPServer::begin(const String &uname, const String &pword, boolean _bUnixLst) { _FTP_USER = uname; _FTP_PASS = pword; + bUnixLst = _bUnixLst; iniVariables(); -- cgit v1.2.3