Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(727)

Side by Side Diff: patches/nss-genname-warnings.patch

Issue 317293002: Add the patch file for r275283. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/nss
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: nss/lib/certdb/genname.c
2 diff --git a/nss/lib/certdb/genname.c b/nss/lib/certdb/genname.c
3 index 412a9d2c6b165513b1ca785409c93d4631089db8..1b0cc970489478dc36bd9a4c38d8bca6 231eb9b3 100644
4 --- a/nss/lib/certdb/genname.c
5 +++ b/nss/lib/certdb/genname.c
6 @@ -1611,9 +1611,9 @@ getNameExtensionsBuiltIn(CERTCertificate *cert,
7 "\x73\x67\x64\x6E\x2E\x70\x6D\x2E\x67\x6F\x75"
8 "\x76\x2E\x66\x72";
9
10 - const SECItem anssi_subject = {0, (char *) rawANSSISubject,
11 + const SECItem anssi_subject = {0, (unsigned char *) rawANSSISubject,
12 sizeof(rawANSSISubject)-1};
13 - const SECItem permitFranceGovNC = {0, (char *) constraintFranceGov,
14 + const SECItem permitFranceGovNC = {0, (unsigned char *) constraintFranceGov,
15 sizeof(constraintFranceGov)-1};
16
17 if (SECITEM_ItemsAreEqual(&cert->derSubject, &anssi_subject)) {
OLDNEW
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698