Avoid space in owner/group string to fix LIST command

This commit is contained in:
Maschell 2024-05-07 06:40:28 +02:00
parent 02996b00b6
commit 0c6e58cb75

View File

@ -1005,8 +1005,8 @@ int FtpSession::fillDirent (struct stat const &st_, std::string_view const path_
auto const owner = "Switch";
auto const group = "Switch";
#elif defined(__WIIU__)
auto const owner = "Wii U";
auto const group = "Wii U";
auto const owner = "WiiU";
auto const group = "WiiU";
#else
char owner[32];
char group[32];