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
04a3aa99
Commit
04a3aa99
authored
May 27, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
May 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schannel: Fix the name of the SetContextAttributes field of SECPKG_FUNCTION_TABLE.
parent
ecaeeb2c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
lsamode.c
dlls/schannel/lsamode.c
+2
-2
main.c
dlls/schannel/tests/main.c
+1
-1
ntsecpkg.h
include/ntsecpkg.h
+5
-1
No files found.
dlls/schannel/lsamode.c
View file @
04a3aa99
...
...
@@ -107,7 +107,7 @@ static SECPKG_FUNCTION_TABLE secPkgFunctionTable[2] =
NULL
,
/* SpQueryContextAttributes */
NULL
,
/* SpAddCredentials */
NULL
,
/* SetExtendedInformation */
NULL
,
/* S
pS
etContextAttributes */
NULL
,
/* SetContextAttributes */
NULL
,
/* SetCredentialsAttributes */
},
{
NULL
,
/* InitializePackage */
...
...
@@ -137,7 +137,7 @@ static SECPKG_FUNCTION_TABLE secPkgFunctionTable[2] =
NULL
,
/* SpQueryContextAttributes */
NULL
,
/* SpAddCredentials */
NULL
,
/* SetExtendedInformation */
NULL
,
/* S
pS
etContextAttributes */
NULL
,
/* SetContextAttributes */
NULL
,
/* SetCredentialsAttributes */
}
};
...
...
dlls/schannel/tests/main.c
View file @
04a3aa99
...
...
@@ -34,7 +34,7 @@
/* Helper macros to find the size of SECPKG_FUNCTION_TABLE */
#define SECPKG_FUNCTION_TABLE_SIZE_1 offsetof(SECPKG_FUNCTION_TABLE, \
S
pS
etContextAttributes)
SetContextAttributes)
#define SECPKG_FUNCTION_TABLE_SIZE_2 offsetof(SECPKG_FUNCTION_TABLE, \
SetCredentialsAttributes)
#define SECPKG_FUNCTION_TABLE_SIZE_3 sizeof(SECPKG_FUNCTION_TABLE)
...
...
include/ntsecpkg.h
View file @
04a3aa99
...
...
@@ -368,6 +368,10 @@ typedef NTSTATUS (NTAPI SpExportSecurityContextFn)(LSA_SEC_HANDLE, ULONG,
typedef
NTSTATUS
(
NTAPI
SpImportSecurityContextFn
)(
PSecBuffer
,
HANDLE
,
PLSA_SEC_HANDLE
);
#ifdef WINE_NO_UNICODE_MACROS
#undef SetContextAttributes
#endif
/* dispatch tables of LSA-mode functions implemented by SSP/AP */
typedef
struct
SECPKG_FUNCTION_TABLE
{
PLSA_AP_INITIALIZE_PACKAGE
InitializePackage
;
...
...
@@ -398,7 +402,7 @@ typedef struct SECPKG_FUNCTION_TABLE {
SpAddCredentialsFn
*
SpAddCredentials
;
SpSetExtendedInformationFn
*
SetExtendedInformation
;
/* Packages with version SECPKG_INTERFACE_VERSION end here */
SpSetContextAttributesFn
*
S
pS
etContextAttributes
;
SpSetContextAttributesFn
*
SetContextAttributes
;
/* Packages with version SECPKG_INTERFACE_VERSION_2 end here */
SpSetCredentialsAttributesFn
*
SetCredentialsAttributes
;
/* Packages with version SECPKG_INTERFACE_VERSION_3 end here */
...
...
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