aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/SConnection.cxx
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2024-11-22 13:23:03 +0100
committerPierre Ossman <ossman@cendio.se>2024-11-22 13:23:03 +0100
commit9366d8e54c5ee1c2cfcf333a17b7fd4bdbd13993 (patch)
tree3fd8306bb874e1198a49f9a9ee9a7f417d10da92 /common/rfb/SConnection.cxx
parentcd52658ff6e73aa1c36f01a8486ba346a869c848 (diff)
parent0af41e7fed978f934f3dc6ca8c99599a212467c5 (diff)
downloadtigervnc-9366d8e54c5ee1c2cfcf333a17b7fd4bdbd13993.tar.gz
tigervnc-9366d8e54c5ee1c2cfcf333a17b7fd4bdbd13993.zip
Merge branch 'master' of https://github.com/madnicendio/tigervnc
Diffstat (limited to 'common/rfb/SConnection.cxx')
-rw-r--r--common/rfb/SConnection.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/rfb/SConnection.cxx b/common/rfb/SConnection.cxx
index a31249fb..dc0c1e85 100644
--- a/common/rfb/SConnection.cxx
+++ b/common/rfb/SConnection.cxx
@@ -112,7 +112,7 @@ bool SConnection::processVersionMsg()
int majorVersion;
int minorVersion;
- vlog.debug("reading protocol version");
+ vlog.debug("Reading protocol version");
if (!is->hasData(12))
return false;
@@ -195,7 +195,7 @@ bool SConnection::processVersionMsg()
bool SConnection::processSecurityTypeMsg()
{
- vlog.debug("processing security type message");
+ vlog.debug("Processing security type message");
if (!is->hasData(1))
return false;
@@ -230,7 +230,7 @@ void SConnection::processSecurityType(int secType)
bool SConnection::processSecurityMsg()
{
- vlog.debug("processing security message");
+ vlog.debug("Processing security message");
try {
if (!ssecurity->processMsg())
return false;
@@ -274,7 +274,7 @@ bool SConnection::processSecurityFailure()
bool SConnection::processInitMsg()
{
- vlog.debug("reading client initialisation");
+ vlog.debug("Reading client initialisation");
return reader_->readClientInit();
}