mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-01-17 00:04:52 -05:00
fix the typos
This commit is contained in:
@@ -68,9 +68,9 @@ public:
|
||||
int connectionServerNumber;
|
||||
int fakeBuddyPoints;
|
||||
|
||||
bool useOldSuidGenerator;
|
||||
|
||||
const char *altPublicBindAddress;
|
||||
const bool useOldSuidGenerator;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -256,10 +256,10 @@ void ClientConnection::validateClient(const std::string &id, const std::string &
|
||||
if (parent_id != child_id) {
|
||||
DatabaseConnection::getInstance().upsertAccountRelationship(parent_id, child_id);
|
||||
}
|
||||
} else {
|
||||
WARNING(true, ("Login API returned empty child account(s)."));
|
||||
}
|
||||
} else {
|
||||
WARNING(true, ("Login API returned empty child account(s)."));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
LOG("LoginClientConnection", ("validateClient() for stationId (%i) at IP (%s), id (%s)", user_id, getRemoteAddress().c_str(), uname.c_str()));
|
||||
|
||||
@@ -134,6 +134,7 @@ class ConfigLoginServer
|
||||
|
||||
static bool getUseExternalAuth();
|
||||
static const char * getExternalAuthUrl();
|
||||
static bool getUseOldSuidGenerator();
|
||||
|
||||
// has character creation for this cluster been disabled through config option
|
||||
static bool isCharacterCreationDisabled(std::string const & cluster);
|
||||
@@ -487,7 +488,7 @@ inline const char * ConfigLoginServer::getExternalAuthUrl()
|
||||
}
|
||||
|
||||
|
||||
inline const bool ConfigLoginServer::getUseOldSuidGenerator()
|
||||
inline bool ConfigLoginServer::getUseOldSuidGenerator()
|
||||
{
|
||||
return data->useOldSuidGenerator;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user