Fixed custom worker names

pull/166/head
SChernykh 2022-05-10 14:01:10 +02:00
parent a4d84e318d
commit edd782ac23
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ static bool get_custom_user(const char* s, char (&user)[N])
} }
// Limit to printable ASCII characters // Limit to printable ASCII characters
if (c >= ' ' && c <= '~') { if (c >= ' ' && c <= '~') {
user[len++] += c; user[len++] = c;
} }
++s; ++s;
} }