mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-19 03:09:20 +01:00
Avoid space in owner/group string to fix LIST command
This commit is contained in:
parent
02996b00b6
commit
0c6e58cb75
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user