Module: appdb
Branch: master
Commit: 9f3b96665df1b7ad0bf04b7b60b8f3e6118c6d37
URL: http://source.winehq.org/git/appdb.git/?a=commit;h=9f3b96665df1b7ad0bf04b7b…
Author: Andrew Nguyen <arethusa26(a)gmail.com>
Date: Sat Dec 12 15:40:31 2009 +0100
tables: Fix a few syntax errors in appdb_tables.sql
---
tables/appdb_tables.sql | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tables/appdb_tables.sql b/tables/appdb_tables.sql
index d2bfbb8..d883108 100644
--- a/tables/appdb_tables.sql
+++ b/tables/appdb_tables.sql
@@ -142,7 +142,7 @@ create table appData (
submitTime datetime NOT NULL,
submitterId int(11) NOT NULL default '0',
state enum('accepted','queued','rejected') NOT NULL default 'accepted',
- testedVersion text NOT NULL
+ testedVersion text NOT NULL,
KEY id (id),
KEY versionId (versionId)
);
@@ -173,7 +173,7 @@ create table appNotes (
appId int not null,
submitterId int not null,
submitTime datetime not null,
- linkedWith int not null
+ linkedWith int not null,
key(noteId)
);
Module: wine
Branch: master
Commit: 01a7cbf843213459495790e01be6dfa0fbc2e2b2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=01a7cbf843213459495790e01…
Author: Juan Lang <juan.lang(a)gmail.com>
Date: Fri Dec 11 08:12:54 2009 -0800
crypt32: Accept end certificates with no extended key usage extension if a particular key usage is requested.
---
dlls/crypt32/chain.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c
index dd92af2..e5ad7dc 100644
--- a/dlls/crypt32/chain.c
+++ b/dlls/crypt32/chain.c
@@ -2541,10 +2541,11 @@ static void CRYPT_CheckUsages(PCERT_CHAIN_CONTEXT chain,
* key usage extension be present and that a particular purpose
* be indicated in order for the certificate to be acceptable to
* that application."
- * For now I'm being more conservative and disallowing it.
+ * Not all web sites include the extended key usage extension, so
+ * accept chains without it.
*/
- WARN_(chain)("requested usage from a certificate with no usages\n");
- validForUsage = FALSE;
+ TRACE_(chain)("requested usage from certificate with no usages\n");
+ validForUsage = TRUE;
}
if (!validForUsage)
{