Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfreddii <freddii@users.noreply.github.com>2021-01-21 00:17:38 +0300
committerfreddii <freddii@users.noreply.github.com>2021-01-21 00:17:38 +0300
commit9889a0fa993dd907abb6cebd4609d9447c05f0d2 (patch)
treeeeb0199252f570d464b859689b6fd4d8e24555a1 /src/murmur/Server.cpp
parent4b36f0f9a7892d03fbac4f40f4862cfb3ab46504 (diff)
DOCS: fixed typos
Diffstat (limited to 'src/murmur/Server.cpp')
-rw-r--r--src/murmur/Server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/murmur/Server.cpp b/src/murmur/Server.cpp
index f39a4bfef..09c9eb3bb 100644
--- a/src/murmur/Server.cpp
+++ b/src/murmur/Server.cpp
@@ -911,7 +911,7 @@ void Server::run() {
// Unknown peer
foreach (ServerUser *usr, qhHostUsers.value(ha)) {
if (checkDecrypt(usr, encrypt, buffer, len)) { // checkDecrypt takes the User's qrwlCrypt lock.
- // Every time we relock, reverify users' existance.
+ // Every time we relock, reverify users' existence.
// The main thread might delete the user while the lock isn't held.
unsigned int uiSession = usr->uiSession;
rl.unlock();
@@ -1592,7 +1592,7 @@ void Server::sslError(const QList< QSslError > &errors) {
// attempt to finish the handshake.
//
// Because abort() tears down a lot of internal state
- // of the QSslSocket, inlcuding the 'SSL *' object
+ // of the QSslSocket, including the 'SSL *' object
// associated with the socket, this is fatal and leads
// to crashes, such as attempting to derefernce a nullptr
// 'SSL *' object.