schannel: Fix the name of the SetContextAttributes field of SECPKG_FUNCTION_TABLE.

oldstable
Francois Gouget 2007-05-27 13:36:48 +02:00 committed by Alexandre Julliard
parent ecaeeb2c9b
commit 04a3aa99a6
3 changed files with 8 additions and 4 deletions

View File

@ -107,7 +107,7 @@ static SECPKG_FUNCTION_TABLE secPkgFunctionTable[2] =
NULL, /* SpQueryContextAttributes */
NULL, /* SpAddCredentials */
NULL, /* SetExtendedInformation */
NULL, /* SpSetContextAttributes */
NULL, /* SetContextAttributes */
NULL, /* SetCredentialsAttributes */
}, {
NULL, /* InitializePackage */
@ -137,7 +137,7 @@ static SECPKG_FUNCTION_TABLE secPkgFunctionTable[2] =
NULL, /* SpQueryContextAttributes */
NULL, /* SpAddCredentials */
NULL, /* SetExtendedInformation */
NULL, /* SpSetContextAttributes */
NULL, /* SetContextAttributes */
NULL, /* SetCredentialsAttributes */
}
};

View File

@ -34,7 +34,7 @@
/* Helper macros to find the size of SECPKG_FUNCTION_TABLE */
#define SECPKG_FUNCTION_TABLE_SIZE_1 offsetof(SECPKG_FUNCTION_TABLE, \
SpSetContextAttributes)
SetContextAttributes)
#define SECPKG_FUNCTION_TABLE_SIZE_2 offsetof(SECPKG_FUNCTION_TABLE, \
SetCredentialsAttributes)
#define SECPKG_FUNCTION_TABLE_SIZE_3 sizeof(SECPKG_FUNCTION_TABLE)

View File

@ -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 *SpSetContextAttributes;
SpSetContextAttributesFn *SetContextAttributes;
/* Packages with version SECPKG_INTERFACE_VERSION_2 end here */
SpSetCredentialsAttributesFn *SetCredentialsAttributes;
/* Packages with version SECPKG_INTERFACE_VERSION_3 end here */