summaryrefslogtreecommitdiffstats
path: root/libvncserver
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2018-03-24 02:30:34 +0100
committerChristian Beier <dontmind@freeshell.org>2018-03-24 02:30:34 +0100
commitf23248a415ab1abab7c4e5330a9985d5bb10987b (patch)
tree47000306abe1dcb8387c93c30b2932ae6ea6cf3c /libvncserver
parent449cbe90282dcb5d0eb3b59f0409134f4ea11871 (diff)
downloadlibtdevnc-f23248a415ab1abab7c4e5330a9985d5bb10987b.tar.gz
libtdevnc-f23248a415ab1abab7c4e5330a9985d5bb10987b.zip
rfbserver: fix a typo
Diffstat (limited to 'libvncserver')
-rw-r--r--libvncserver/rfbserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncserver/rfbserver.c b/libvncserver/rfbserver.c
index 44be1c3..7af6aed 100644
--- a/libvncserver/rfbserver.c
+++ b/libvncserver/rfbserver.c
@@ -2581,7 +2581,7 @@ rfbProcessClientNormalMessage(rfbClientPtr cl)
* argument. Here we impose a limit of 1 MB so that the value fits
* into all of the types to prevent from misinterpretation and thus
* from accessing uninitialized memory (CVE-2018-7225) and also to
- * prevent from a denial-of-service by allocating to much memory in
+ * prevent from a denial-of-service by allocating too much memory in
* the server. */
if (msg.cct.length > 1<<20) {
rfbLog("rfbClientCutText: too big cut text length requested: %u B > 1 MB\n", (unsigned int)msg.cct.length);