diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2015-07-12 01:38:30 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2015-07-12 01:38:30 -0700 |
commit | 136e0725130ae74e7578d50f9ed16d44c0a5067a (patch) | |
tree | 1a85e48f95722787ee9693ded49e2da6c99f0e40 /common/trans.c | |
parent | 527bac06244007d2848eb670ca7f2c54d5f4a0ed (diff) | |
download | xrdp-proprietary-136e0725130ae74e7578d50f9ed16d44c0a5067a.tar.gz xrdp-proprietary-136e0725130ae74e7578d50f9ed16d44c0a5067a.zip |
fix problem caused by b56aa98 for tls connections
Diffstat (limited to 'common/trans.c')
-rw-r--r-- | common/trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/trans.c b/common/trans.c index 89679844..4253e6f0 100644 --- a/common/trans.c +++ b/common/trans.c @@ -336,7 +336,7 @@ trans_check_wait_objs(struct trans *self) if (self->si != 0 && self->si->source[self->my_source] > MAX_SBYTES) { } - else if (g_tcp_can_recv(self->sck, 0)) + else if (self->trans_can_recv(self, self->sck, 0)) { cur_source = 0; if (self->si != 0) |