diff options
author | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2013-09-25 18:54:05 -0700 |
---|---|---|
committer | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2013-09-25 18:54:05 -0700 |
commit | 52fb1f9854eec37d57f9a7a91dfce48ae9774dd5 (patch) | |
tree | 8f61cd555eefb8b03fa762a43f223472fc071cf5 /sesman/chansrv/smartcard_pcsc.c | |
parent | db71bc5d8b7841dee476bee228eadf009cec710f (diff) | |
download | xrdp-proprietary-52fb1f9854eec37d57f9a7a91dfce48ae9774dd5.tar.gz xrdp-proprietary-52fb1f9854eec37d57f9a7a91dfce48ae9774dd5.zip |
scard: added more messages
Diffstat (limited to 'sesman/chansrv/smartcard_pcsc.c')
-rw-r--r-- | sesman/chansrv/smartcard_pcsc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sesman/chansrv/smartcard_pcsc.c b/sesman/chansrv/smartcard_pcsc.c index 7af1871c..a9c5f3e4 100644 --- a/sesman/chansrv/smartcard_pcsc.c +++ b/sesman/chansrv/smartcard_pcsc.c @@ -338,11 +338,11 @@ scard_process_connect(struct trans *con, struct stream *in_s) g_xrdp_pcsc_state |= XRDP_PCSC_STATE_GOT_C; in_uint32_le(in_s, hContext); in_uint8a(in_s, szReader, 100); - in_uint32_le(in_s, rs.shared_mode_flag); - in_uint32_le(in_s, rs.preferred_protocol); + in_uint32_le(in_s, rs.dwShareMode); + in_uint32_le(in_s, rs.dwPreferredProtocols); LLOGLN(0, ("scard_process_connect: dwShareMode 0x%8.8x " - "dwPreferredProtocols 0x%8.8x", rs.shared_mode_flag, - rs.preferred_protocol)); + "dwPreferredProtocols 0x%8.8x", rs.dwShareMode, + rs.dwPreferredProtocols)); scard_send_connect(con, hContext, 1, &rs); return 0; } |