aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarnaby <22575741+barnabwhy@users.noreply.github.com>2022-05-13 01:36:30 +0100
committerGitHub <noreply@github.com>2022-05-13 02:36:30 +0200
commitacedd15c538977a2b58a0ce4f5ba52a8584a9340 (patch)
tree808d8e1496c98f8736b9abfcbdefa71865e1ad4f
parent25579c16ca530197a8246ad3812c220961c7daf0 (diff)
downloadNorthstarLauncher-1.8.0.tar.gz
NorthstarLauncher-1.8.0.zip
Fix typo in UID logs (#176)v1.8.0-rc2v1.8.0-rc1v1.8.0
-rw-r--r--NorthstarDedicatedTest/serverauthentication.cpp2
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
{