mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
2008-09-28 Marcus Brinkmann <marcus@g10code.com>
* apdu.c (pcsc_get_status): Fix last change.
This commit is contained in:
parent
d3157d6f8e
commit
d62ca1bf4a
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2008-09-28 Marcus Brinkmann <marcus@g10code.com>
|
||||||
|
|
||||||
|
* apdu.c (pcsc_get_status): Fix last change.
|
||||||
|
|
||||||
2008-09-25 Werner Koch <wk@g10code.com>
|
2008-09-25 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* app-openpgp.c (do_setattr): Do not allow setting of the reset
|
* app-openpgp.c (do_setattr): Do not allow setting of the reset
|
||||||
|
|
|
@ -1092,8 +1092,8 @@ pcsc_get_status (int slot, unsigned int *status)
|
||||||
#else
|
#else
|
||||||
/* Some winscard drivers may set EXCLUSIVE and INUSE at the same
|
/* Some winscard drivers may set EXCLUSIVE and INUSE at the same
|
||||||
time when we are the only user (SCM SCR335) under Windows. */
|
time when we are the only user (SCM SCR335) under Windows. */
|
||||||
if ((status & 6) == 6)
|
if ((*status & 6) == 6)
|
||||||
status |= 1;
|
*status |= 1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue