crypt32: Constify some variables.

This commit is contained in:
Andrew Talbot 2010-08-15 20:15:18 +01:00 committed by Alexandre Julliard
parent dc06444314
commit 761f5ca105
1 changed files with 6 additions and 6 deletions

View File

@ -1343,7 +1343,7 @@ static CERT_POLICIES_INFO *CRYPT_GetPolicies(PCCERT_CONTEXT cert)
return policies;
}
static void CRYPT_CheckPolicies(CERT_POLICIES_INFO *policies, CERT_INFO *cert,
static void CRYPT_CheckPolicies(const CERT_POLICIES_INFO *policies, CERT_INFO *cert,
DWORD *errorStatus)
{
DWORD i;
@ -3001,7 +3001,7 @@ static BOOL WINAPI verify_basic_constraints_policy(LPCSTR szPolicyOID,
return TRUE;
}
static BOOL match_dns_to_subject_alt_name(PCERT_EXTENSION ext,
static BOOL match_dns_to_subject_alt_name(const CERT_EXTENSION *ext,
LPCWSTR server_name)
{
BOOL matches = FALSE;
@ -3069,7 +3069,7 @@ static BOOL match_dns_to_subject_alt_name(PCERT_EXTENSION ext,
return matches;
}
static BOOL find_matching_domain_component(CERT_NAME_INFO *name,
static BOOL find_matching_domain_component(const CERT_NAME_INFO *name,
LPCWSTR component)
{
BOOL matches = FALSE;
@ -3080,7 +3080,7 @@ static BOOL find_matching_domain_component(CERT_NAME_INFO *name,
if (!strcmp(szOID_DOMAIN_COMPONENT,
name->rgRDN[i].rgRDNAttr[j].pszObjId))
{
PCERT_RDN_ATTR attr;
const CERT_RDN_ATTR *attr;
attr = &name->rgRDN[i].rgRDNAttr[j];
/* Compare with memicmpW rather than strcmpiW in order to avoid
@ -3088,7 +3088,7 @@ static BOOL find_matching_domain_component(CERT_NAME_INFO *name,
* must match one domain component attribute's entire string
* value with a case-insensitive match.
*/
matches = !memicmpW(component, (LPWSTR)attr->Value.pbData,
matches = !memicmpW(component, (LPCWSTR)attr->Value.pbData,
attr->Value.cbData / sizeof(WCHAR));
}
return matches;
@ -3149,7 +3149,7 @@ static BOOL match_domain_component(LPCWSTR allowed_component, DWORD allowed_len,
return matches;
}
static BOOL match_common_name(LPCWSTR server_name, PCERT_RDN_ATTR nameAttr)
static BOOL match_common_name(LPCWSTR server_name, const CERT_RDN_ATTR *nameAttr)
{
LPCWSTR allowed = (LPCWSTR)nameAttr->Value.pbData;
LPCWSTR allowed_component = allowed;