Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d8fcffc7
Commit
d8fcffc7
authored
Oct 06, 2010
by
Juan Lang
Committed by
Alexandre Julliard
Oct 06, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Fix more Win9x failures.
parent
3e437ec5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
chain.c
dlls/crypt32/tests/chain.c
+13
-5
No files found.
dlls/crypt32/tests/chain.c
View file @
d8fcffc7
...
...
@@ -3918,9 +3918,13 @@ static const ChainPolicyCheck googlePolicyCheckWithMatchingNameExpired = {
{
0
,
CERT_E_EXPIRED
,
0
,
0
,
NULL
},
NULL
,
0
};
/* Win98 sees the chain as expired, even though it isn't for the date tested */
static
const
CERT_CHAIN_POLICY_STATUS
expiredStatus
=
{
0
,
CERT_E_EXPIRED
,
0
,
0
,
NULL
};
static
const
ChainPolicyCheck
googlePolicyCheckWithMatchingName
=
{
{
sizeof
(
googleChain
)
/
sizeof
(
googleChain
[
0
]),
googleChain
},
{
0
,
0
,
-
1
,
-
1
,
NULL
},
NULL
,
0
{
0
,
0
,
-
1
,
-
1
,
NULL
},
&
expiredStatus
,
0
};
/* Windows NT 4 has a different error code when the name doesn't match. */
...
...
@@ -3932,14 +3936,18 @@ static const ChainPolicyCheck iTunesPolicyCheckWithoutMatchingName = {
{
0
,
CERT_E_CN_NO_MATCH
,
0
,
0
,
NULL
},
&
noMatchingNameBrokenStatus
,
0
};
/* Win98 does not trust the root of the OpenSSL chain or the Stanford chain */
static
const
CERT_CHAIN_POLICY_STATUS
untrustedRootStatus
=
{
0
,
CERT_E_UNTRUSTEDROOT
,
0
,
0
,
NULL
};
static
const
ChainPolicyCheck
opensslPolicyCheckWithMatchingName
=
{
{
sizeof
(
opensslChain
)
/
sizeof
(
opensslChain
[
0
]),
opensslChain
},
{
0
,
0
,
-
1
,
-
1
,
NULL
},
NULL
,
0
{
0
,
0
,
-
1
,
-
1
,
NULL
},
&
untrustedRootStatus
,
0
};
static
const
ChainPolicyCheck
opensslPolicyCheckWithoutMatchingName
=
{
{
sizeof
(
opensslChain
)
/
sizeof
(
opensslChain
[
0
]),
opensslChain
},
{
0
,
CERT_E_CN_NO_MATCH
,
0
,
0
,
NULL
},
NULL
,
0
{
0
,
CERT_E_CN_NO_MATCH
,
0
,
0
,
NULL
},
&
untrustedRootStatus
,
0
};
static
const
ChainPolicyCheck
winehqPolicyCheckWithMatchingName
=
{
...
...
@@ -3954,12 +3962,12 @@ static const ChainPolicyCheck winehqPolicyCheckWithoutMatchingName = {
static
const
ChainPolicyCheck
stanfordPolicyCheckWithMatchingName
=
{
{
sizeof
(
stanfordChain
)
/
sizeof
(
stanfordChain
[
0
]),
stanfordChain
},
{
0
,
0
,
-
1
,
-
1
,
NULL
},
NULL
,
0
{
0
,
0
,
-
1
,
-
1
,
NULL
},
&
untrustedRootStatus
,
0
};
static
const
ChainPolicyCheck
stanfordPolicyCheckWithoutMatchingName
=
{
{
sizeof
(
stanfordChain
)
/
sizeof
(
stanfordChain
[
0
]),
stanfordChain
},
{
0
,
CERT_E_CN_NO_MATCH
,
0
,
0
,
NULL
},
NULL
,
0
{
0
,
CERT_E_CN_NO_MATCH
,
0
,
0
,
NULL
},
&
untrustedRootStatus
,
0
};
static
const
ChainPolicyCheck
invalidExtensionPolicyCheck
=
{
...
...
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