From fa4440bcb4b1dae004d21896781fda271ae37d31 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 11 May 2024 22:10:20 +0200 Subject: [PATCH] Change default CWD to `/` to fix access to any non-sd card directory for some ftp clients --- include/ftpSession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ftpSession.h b/include/ftpSession.h index 33829d2..807803c 100644 --- a/include/ftpSession.h +++ b/include/ftpSession.h @@ -238,7 +238,7 @@ private: SockAddr m_portAddr; /// \brief Current working directory - std::string m_cwd = "/fs/vol/external01/"; + std::string m_cwd = "/"; /// \brief List working directory std::string m_lwd;