Commit 098e82d8 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

secur32: Make some data const.

parent 47ffd7ae
...@@ -1634,7 +1634,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_DecryptMessage(PCtxtHandle phContext, ...@@ -1634,7 +1634,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_DecryptMessage(PCtxtHandle phContext,
return ret; return ret;
} }
static SecurityFunctionTableA ntlmTableA = { static const SecurityFunctionTableA ntlmTableA = {
1, 1,
NULL, /* EnumerateSecurityPackagesA */ NULL, /* EnumerateSecurityPackagesA */
ntlm_QueryCredentialsAttributesA, /* QueryCredentialsAttributesA */ ntlm_QueryCredentialsAttributesA, /* QueryCredentialsAttributesA */
...@@ -1665,7 +1665,7 @@ static SecurityFunctionTableA ntlmTableA = { ...@@ -1665,7 +1665,7 @@ static SecurityFunctionTableA ntlmTableA = {
NULL, /* SetContextAttributesA */ NULL, /* SetContextAttributesA */
}; };
static SecurityFunctionTableW ntlmTableW = { static const SecurityFunctionTableW ntlmTableW = {
1, 1,
NULL, /* EnumerateSecurityPackagesW */ NULL, /* EnumerateSecurityPackagesW */
ntlm_QueryCredentialsAttributesW, /* QueryCredentialsAttributesW */ ntlm_QueryCredentialsAttributesW, /* QueryCredentialsAttributesW */
......
...@@ -290,7 +290,7 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW( ...@@ -290,7 +290,7 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
return ret; return ret;
} }
static SecurityFunctionTableA schanTableA = { static const SecurityFunctionTableA schanTableA = {
1, 1,
NULL, /* EnumerateSecurityPackagesA */ NULL, /* EnumerateSecurityPackagesA */
schan_QueryCredentialsAttributesA, schan_QueryCredentialsAttributesA,
...@@ -321,7 +321,7 @@ static SecurityFunctionTableA schanTableA = { ...@@ -321,7 +321,7 @@ static SecurityFunctionTableA schanTableA = {
NULL, /* SetContextAttributesA */ NULL, /* SetContextAttributesA */
}; };
static SecurityFunctionTableW schanTableW = { static const SecurityFunctionTableW schanTableW = {
1, 1,
NULL, /* EnumerateSecurityPackagesW */ NULL, /* EnumerateSecurityPackagesW */
schan_QueryCredentialsAttributesW, schan_QueryCredentialsAttributesW,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment