Change account parse delimiter [skip ci]

This commit is contained in:
Akkadius
2019-09-08 15:44:19 -05:00
parent 51995ca7f2
commit b63821bbae
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ void Client::Handle_Login(const char *data, unsigned int size)
else {
if (server.options.IsPasswordLoginAllowed()) {
cred = (&outbuffer[1 + user.length()]);
auto components = SplitString(user, '.');
auto components = SplitString(user, ':');
if (components.size() == 2) {
db_loginserver = components[0];
user = components[1];