diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-03-09 21:07:08 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-03-09 21:07:08 -0700 |
commit | 4cae44ce3b3acd2cdc19332f49ec54bae5a77d98 (patch) | |
tree | df12f5b0524d69fb5edaf60026a90e3cf77c6b61 /libxrdp/xrdp_mcs.c | |
parent | a801e44bfa9dfd0e0e3831027109c3fadd9874c1 (diff) | |
download | xrdp-proprietary-4cae44ce3b3acd2cdc19332f49ec54bae5a77d98.tar.gz xrdp-proprietary-4cae44ce3b3acd2cdc19332f49ec54bae5a77d98.zip |
libxrdp: keep rdp packets < 16K
Diffstat (limited to 'libxrdp/xrdp_mcs.c')
-rw-r--r-- | libxrdp/xrdp_mcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxrdp/xrdp_mcs.c b/libxrdp/xrdp_mcs.c index a9e8d7b5..ba5ea73e 100644 --- a/libxrdp/xrdp_mcs.c +++ b/libxrdp/xrdp_mcs.c @@ -876,7 +876,7 @@ xrdp_mcs_send(struct xrdp_mcs *self, struct stream *s, int chan) if (len > 8192 * 2) { - g_writeln("error in xrdp_mcs_send, size too bog, its %d", len); + g_writeln("error in xrdp_mcs_send, size too big, its %d", len); } //if (len > max_len) |