SteveM
Results
1
issues of
SteveM
https://github.com/xreef/SimpleFTPServer/blob/master/FtpServer.cpp#L1935C8-L1935C20 In the following code segment: ``` int8_t FtpServer::readChar() { int8_t rc = -1; if( client.available()) { char c = client.read(); DEBUG_PRINT("-"); DEBUG_PRINT( c ); if( c == '\\' )...