diff options
| author | Itamar Reis Peixoto <itamar@ispbrasil.com.br> | 2016-05-06 09:05:38 -0400 |
|---|---|---|
| committer | Itamar Reis Peixoto <itamar@ispbrasil.com.br> | 2016-05-06 09:05:38 -0400 |
| commit | 0a6a55b5472fff76a09d3b2435ec0d09329a93d7 (patch) | |
| tree | 6e9826cfec408a0fec92064ba82d87f5eb4d4a16 /libxrdp/xrdp_rdp.c | |
| parent | 824909118367d0b012069a3aa94b70b990b6ece0 (diff) | |
| parent | b95dc9e12f570c6612c74f2b9b409946ad5ecdcb (diff) | |
| download | xrdp-proprietary-0a6a55b5472fff76a09d3b2435ec0d09329a93d7.tar.gz xrdp-proprietary-0a6a55b5472fff76a09d3b2435ec0d09329a93d7.zip | |
Merge pull request #370 from proski/typos
Typo fixes and more
Diffstat (limited to 'libxrdp/xrdp_rdp.c')
| -rw-r--r-- | libxrdp/xrdp_rdp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index 00bda631..fb3b4b51 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -1155,7 +1155,7 @@ xrdp_rdp_process_data(struct xrdp_rdp *self, struct stream *s) xrdp_rdp_process_screen_update(self, s); break; case 35: /* 35(0x23) */ - /* 35 ?? this comes when minimuzing a full screen mstsc.exe 2600 */ + /* 35 ?? this comes when minimizing a full screen mstsc.exe 2600 */ /* I think this is saying the client no longer wants screen */ /* updates and it will issue a 33 above to catch up */ /* so minimized apps don't take bandwidth */ @@ -1193,18 +1193,18 @@ xrdp_rdp_disconnect(struct xrdp_rdp *self) /*****************************************************************************/ int APP_CC -xrdp_rdp_send_deactive(struct xrdp_rdp *self) +xrdp_rdp_send_deactivate(struct xrdp_rdp *self) { struct stream *s; - DEBUG(("in xrdp_rdp_send_deactive")); + DEBUG(("in xrdp_rdp_send_deactivate")); make_stream(s); init_stream(s, 8192); if (xrdp_rdp_init(self, s) != 0) { free_stream(s); - DEBUG(("out xrdp_rdp_send_deactive error")); + DEBUG(("out xrdp_rdp_send_deactivate error")); return 1; } @@ -1213,11 +1213,11 @@ xrdp_rdp_send_deactive(struct xrdp_rdp *self) if (xrdp_rdp_send(self, s, RDP_PDU_DEACTIVATE) != 0) { free_stream(s); - DEBUG(("out xrdp_rdp_send_deactive error")); + DEBUG(("out xrdp_rdp_send_deactivate error")); return 1; } free_stream(s); - DEBUG(("out xrdp_rdp_send_deactive")); + DEBUG(("out xrdp_rdp_send_deactivate")); return 0; } |
