From a950b5b28e754657d74b659b83072d3c8da75f5c Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Sun, 24 Apr 2022 17:33:59 +0200 Subject: [PATCH] Fixed typo --- src/app/FTPServer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/FTPServer.h b/src/app/FTPServer.h index 630845a..ca498dc 100644 --- a/src/app/FTPServer.h +++ b/src/app/FTPServer.h @@ -1028,7 +1028,7 @@ class FTPServer : public TCPServer char *_login; char *_password; - const char *_FTPDir = NULL; //Pointer to constant string and char * cont is a constant pointer to string + const char *_FTPDir = NULL; //Pointer to constant string and char * const is a constant pointer to string uint16_t _dataPort; WiFiServer _dataServer; //In passive mode, the FTP server opens two different ports (one for the commands and the other for the data stream)