Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
04a3aa99
Commit
04a3aa99
authored
17 years ago
by
Francois Gouget
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
schannel: Fix the name of the SetContextAttributes field of SECPKG_FUNCTION_TABLE.
parent
ecaeeb2c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/schannel/lsamode.c
+2
-2
2 additions, 2 deletions
dlls/schannel/lsamode.c
dlls/schannel/tests/main.c
+1
-1
1 addition, 1 deletion
dlls/schannel/tests/main.c
include/ntsecpkg.h
+5
-1
5 additions, 1 deletion
include/ntsecpkg.h
with
8 additions
and
4 deletions
dlls/schannel/lsamode.c
+
2
−
2
View file @
04a3aa99
...
...
@@ -107,7 +107,7 @@ static SECPKG_FUNCTION_TABLE secPkgFunctionTable[2] =
NULL
,
/* SpQueryContextAttributes */
NULL
,
/* SpAddCredentials */
NULL
,
/* SetExtendedInformation */
NULL
,
/*
Sp
SetContextAttributes */
NULL
,
/* SetContextAttributes */
NULL
,
/* SetCredentialsAttributes */
},
{
NULL
,
/* InitializePackage */
...
...
@@ -137,7 +137,7 @@ static SECPKG_FUNCTION_TABLE secPkgFunctionTable[2] =
NULL
,
/* SpQueryContextAttributes */
NULL
,
/* SpAddCredentials */
NULL
,
/* SetExtendedInformation */
NULL
,
/*
Sp
SetContextAttributes */
NULL
,
/* SetContextAttributes */
NULL
,
/* SetCredentialsAttributes */
}
};
...
...
This diff is collapsed.
Click to expand it.
dlls/schannel/tests/main.c
+
1
−
1
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, \
Sp
SetContextAttributes)
SetContextAttributes)
#define SECPKG_FUNCTION_TABLE_SIZE_2 offsetof(SECPKG_FUNCTION_TABLE, \
SetCredentialsAttributes)
#define SECPKG_FUNCTION_TABLE_SIZE_3 sizeof(SECPKG_FUNCTION_TABLE)
...
...
This diff is collapsed.
Click to expand it.
include/ntsecpkg.h
+
5
−
1
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
*
Sp
SetContextAttributes
;
SpSetContextAttributesFn
*
SetContextAttributes
;
/* Packages with version SECPKG_INTERFACE_VERSION_2 end here */
SpSetCredentialsAttributesFn
*
SetCredentialsAttributes
;
/* Packages with version SECPKG_INTERFACE_VERSION_3 end here */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment