Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a144c089
Commit
a144c089
authored
Aug 30, 2023
by
Brendan Shanks
Committed by
Alexandre Julliard
Aug 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kerberos: Ensure unixlib function tables and enum stay in sync.
parent
4c2c896a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
unixlib.c
dlls/kerberos/unixlib.c
+6
-2
unixlib.h
dlls/kerberos/unixlib.h
+1
-0
No files found.
dlls/kerberos/unixlib.c
View file @
a144c089
...
...
@@ -1072,7 +1072,7 @@ static NTSTATUS process_attach( void *args )
return
STATUS_DLL_NOT_FOUND
;
}
unixlib_entry_t
__wine_unix_call_funcs
[]
=
const
unixlib_entry_t
__wine_unix_call_funcs
[]
=
{
process_attach
,
accept_context
,
...
...
@@ -1088,6 +1088,8 @@ unixlib_entry_t __wine_unix_call_funcs[] =
verify_signature
,
};
C_ASSERT
(
ARRAYSIZE
(
__wine_unix_call_funcs
)
==
unix_funcs_count
);
#ifdef _WIN64
typedef
ULONG
PTR32
;
...
...
@@ -1392,7 +1394,7 @@ static NTSTATUS wow64_verify_signature( void *args )
return
verify_signature
(
&
params
);
}
unixlib_entry_t
__wine_unix_call_wow64_funcs
[]
=
const
unixlib_entry_t
__wine_unix_call_wow64_funcs
[]
=
{
process_attach
,
wow64_accept_context
,
...
...
@@ -1408,6 +1410,8 @@ unixlib_entry_t __wine_unix_call_wow64_funcs[] =
wow64_verify_signature
,
};
C_ASSERT
(
ARRAYSIZE
(
__wine_unix_call_wow64_funcs
)
==
unix_funcs_count
);
#endif
/* _WIN64 */
#endif
/* defined(SONAME_LIBKRB5) && defined(SONAME_LIBGSSAPI_KRB5) */
dlls/kerberos/unixlib.h
View file @
a144c089
...
...
@@ -137,6 +137,7 @@ enum unix_funcs
unix_seal_message
,
unix_unseal_message
,
unix_verify_signature
,
unix_funcs_count
,
};
#define KRB5_CALL( func, params ) WINE_UNIX_CALL( unix_ ## func, params )
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