aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Cryptography/Authentication
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/shared/Cryptography/Authentication')
-rwxr-xr-xsrc/server/shared/Cryptography/Authentication/AuthCrypt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Cryptography/Authentication/AuthCrypt.h b/src/server/shared/Cryptography/Authentication/AuthCrypt.h
index 752071d177d..2336e4a76db 100755
--- a/src/server/shared/Cryptography/Authentication/AuthCrypt.h
+++ b/src/server/shared/Cryptography/Authentication/AuthCrypt.h
@@ -34,7 +34,7 @@ class AuthCrypt
void DecryptRecv(uint8 *, size_t);
void EncryptSend(uint8 *, size_t);
- bool IsInitialized() { return _initialized; }
+ bool IsInitialized() const { return _initialized; }
private:
ARC4 _clientDecrypt;