Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
5f08c8fb
Commit
5f08c8fb
authored
Mar 07, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winscard: Fix the spelling of a function parameter.
parent
6c6cc2ce
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
winscard.c
dlls/winscard/winscard.c
+3
-3
No files found.
dlls/winscard/winscard.c
View file @
5f08c8fb
...
...
@@ -713,7 +713,7 @@ LONG WINAPI SCardConnectW( SCARDCONTEXT context, const WCHAR *reader, DWORD shar
return
ret
;
}
LONG
WINAPI
SCardReconnect
(
SCARDHANDLE
connect
,
DWORD
share_mode
,
DWORD
preferred_protocols
,
DWORD
initalization
,
LONG
WINAPI
SCardReconnect
(
SCARDHANDLE
connect
,
DWORD
share_mode
,
DWORD
preferred_protocols
,
DWORD
init
i
alization
,
DWORD
*
protocol
)
{
struct
handle
*
handle
=
(
struct
handle
*
)
connect
;
...
...
@@ -721,14 +721,14 @@ LONG WINAPI SCardReconnect( SCARDHANDLE connect, DWORD share_mode, DWORD preferr
UINT64
protocol64
;
LONG
ret
;
TRACE
(
"%Ix, %#lx, %#lx, %#lx, %p
\n
"
,
connect
,
share_mode
,
preferred_protocols
,
initalization
,
protocol
);
TRACE
(
"%Ix, %#lx, %#lx, %#lx, %p
\n
"
,
connect
,
share_mode
,
preferred_protocols
,
init
i
alization
,
protocol
);
if
(
!
handle
||
handle
->
magic
!=
CONNECT_MAGIC
)
return
ERROR_INVALID_HANDLE
;
params
.
handle
=
handle
->
unix_handle
;
params
.
share_mode
=
share_mode
;
params
.
preferred_protocols
=
preferred_protocols
;
params
.
initialization
=
initalization
;
params
.
initialization
=
init
i
alization
;
params
.
protocol
=
&
protocol64
;
if
(
!
(
ret
=
UNIX_CALL
(
scard_reconnect
,
&
params
))
&&
protocol
)
*
protocol
=
protocol64
;
TRACE
(
"returning %#lx
\n
"
,
ret
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment