diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-07-02 00:45:40 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-07-02 00:45:40 -0700 |
commit | 29420b31341ab0c2ce7255b4b6f4b34f3bdf3158 (patch) | |
tree | 5c06cdab6adface3699bb1dfca856e1e0c0b9992 /sesman/chansrv/devredir.c | |
parent | bddf48602d0dd01408e578144863cceb52f78b31 (diff) | |
download | xrdp-proprietary-29420b31341ab0c2ce7255b4b6f4b34f3bdf3158.tar.gz xrdp-proprietary-29420b31341ab0c2ce7255b4b6f4b34f3bdf3158.zip |
chansrv: no logic change, work on warning
Diffstat (limited to 'sesman/chansrv/devredir.c')
-rw-r--r-- | sesman/chansrv/devredir.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sesman/chansrv/devredir.c b/sesman/chansrv/devredir.c index 067738ac..8de28e43 100644 --- a/sesman/chansrv/devredir.c +++ b/sesman/chansrv/devredir.c @@ -296,7 +296,7 @@ dev_redir_check_wait_objs(void) * @brief let client know our capabilities *****************************************************************************/ -void dev_redir_send_server_core_cap_req() +void dev_redir_send_server_core_cap_req(void) { struct stream *s; int bytes; @@ -340,8 +340,8 @@ void dev_redir_send_server_core_cap_req() /* setup file system capability */ xstream_wr_u16_le(s, CAP_DRIVE_TYPE); /* CapabilityType */ xstream_wr_u16_le(s, 8); /* CapabilityLength - len of this */ - /* CAPABILITY_SET in bytes, inc */ - /* the header */ + /* CAPABILITY_SET in bytes, inc */ + /* the header */ xstream_wr_u32_le(s, 2); /* Version */ /* setup smart card capability */ @@ -356,7 +356,7 @@ void dev_redir_send_server_core_cap_req() xstream_free(s); } -void dev_redir_send_server_clientID_confirm() +void dev_redir_send_server_clientID_confirm(void) { struct stream *s; int bytes; @@ -377,7 +377,7 @@ void dev_redir_send_server_clientID_confirm() xstream_free(s); } -void dev_redir_send_server_user_logged_on() +void dev_redir_send_server_user_logged_on(void) { struct stream *s; int bytes; |