diff options
Diffstat (limited to 'FTPClient.cpp')
-rw-r--r-- | FTPClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FTPClient.cpp b/FTPClient.cpp index d385c43..51456f9 100644 --- a/FTPClient.cpp +++ b/FTPClient.cpp @@ -214,7 +214,7 @@ int8_t FTPClient::controlConnect() FTP_DEBUG_MSG("Ignoring CA verification - FTP only"); } control.connect(_server->servername.c_str(), _server->port); - FTP_DEBUG_MSG("Connection to %s:%d ... %S", _server->servername.c_str(), _server->port, control.connected() ? PSTR("OK") : PSTR("failed")); + FTP_DEBUG_MSG("Connection to %s:%d ... %s", _server->servername.c_str(), _server->port, control.connected() ? PSTR("OK") : PSTR("failed")); if (control.connected()) return 1; return -1; |