diff options
author | Barnaby <22575741+barnabwhy@users.noreply.github.com> | 2022-05-13 01:36:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 02:36:30 +0200 |
commit | acedd15c538977a2b58a0ce4f5ba52a8584a9340 (patch) | |
tree | 808d8e1496c98f8736b9abfcbdefa71865e1ad4f /NorthstarDedicatedTest | |
parent | 25579c16ca530197a8246ad3812c220961c7daf0 (diff) | |
download | NorthstarLauncher-acedd15c538977a2b58a0ce4f5ba52a8584a9340.tar.gz NorthstarLauncher-acedd15c538977a2b58a0ce4f5ba52a8584a9340.zip |
Fix typo in UID logs (#176)v1.8.0-rc2v1.8.0-rc1v1.8.0
Diffstat (limited to 'NorthstarDedicatedTest')
-rw-r--r-- | NorthstarDedicatedTest/serverauthentication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/serverauthentication.cpp b/NorthstarDedicatedTest/serverauthentication.cpp index 9a295f98..09ed41d3 100644 --- a/NorthstarDedicatedTest/serverauthentication.cpp +++ b/NorthstarDedicatedTest/serverauthentication.cpp @@ -203,7 +203,7 @@ bool ServerAuthenticationManager::AuthenticatePlayer(void* player, int64_t uid, AuthData authData = m_authData[authToken]; // Log playnername and UID from request - spdlog::info("Comparing connecting UID \"{}\" against stored UID from ms auth reguest \"{}\"", strUid.c_str(), authData.uid); + spdlog::info("Comparing connecting UID \"{}\" against stored UID from ms auth request \"{}\"", strUid.c_str(), authData.uid); if (!strcmp(strUid.c_str(), authData.uid)) // connecting client's uid is the same as auth's uid { |