diff options
author | speidy <speidy@gmail.com> | 2014-03-04 23:56:26 +0200 |
---|---|---|
committer | speidy <speidy@gmail.com> | 2014-03-04 23:56:26 +0200 |
commit | 866fde498efe893144b0b596999f18af90a743c3 (patch) | |
tree | c09f2d5f3f30e59e5023b99e086ce2275c18889c /libxrdp/libxrdp.c | |
parent | 08baf1a5bca7ed41cd9809118f01ba583f5e160b (diff) | |
download | xrdp-proprietary-866fde498efe893144b0b596999f18af90a743c3.tar.gz xrdp-proprietary-866fde498efe893144b0b596999f18af90a743c3.zip |
libxrdp: move fastpath callback calls from xrdp_rdp to xrdp_fastpath
Diffstat (limited to 'libxrdp/libxrdp.c')
-rw-r--r-- | libxrdp/libxrdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c index dc7a9869..9d584244 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -152,7 +152,7 @@ libxrdp_process_data(struct xrdp_session *session, struct stream *s) } break; case 2: /* FASTPATH_INPUT_EVENT */ - if (xrdp_rdp_process_fastpath_data_input(rdp, s) != 0) + if (xrdp_fastpath_process_input_event(rdp->sec_layer->fastpath_layer, s) != 0) { DEBUG(("libxrdp_process_data returned non zero")); cont = 0; |