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

Side by Side Diff: net/third_party/nss/patches/getchannelinfo.patch

Issue 11275240: Update net/third_party/nss/ssl to NSS 3.14. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Upload before commit Created 8 years, 1 month 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
OLDNEW
(Empty)
1 Index: net/third_party/nss/ssl/sslinfo.c
2 ===================================================================
3 --- net/third_party/nss/ssl/sslinfo.c (revision 143014)
4 +++ net/third_party/nss/ssl/sslinfo.c (revision 143015)
5 @@ -97,11 +97,11 @@
6 } else if (ss->ssl3.initialized) { /* SSL3 and TLS */
7 ssl_GetSpecReadLock(ss);
8 /* XXX The cipher suite should be in the specs and this
9 - * function should get it from crSpec rather than from the "hs".
10 + * function should get it from cwSpec rather than from the "hs".
11 * See bug 275744 comment 69.
12 */
13 inf.cipherSuite = ss->ssl3.hs.cipher_suite;
14 - inf.compressionMethod = ss->ssl3.crSpec->compression_method;
15 + inf.compressionMethod = ss->ssl3.cwSpec->compression_method;
16 ssl_ReleaseSpecReadLock(ss);
17 inf.compressionMethodName =
18 ssl_GetCompressionMethodName(inf.compressionMethod);
19 @@ -336,7 +336,7 @@
20 ss->ssl3.initialized) { /* TLS */
21 SECItem *crsName;
22 ssl_GetSpecReadLock(ss); /*********************************/
23 - crsName = &ss->ssl3.crSpec->srvVirtName;
24 + crsName = &ss->ssl3.cwSpec->srvVirtName;
25 if (crsName->data) {
26 sniName = SECITEM_DupItem(crsName);
27 }
OLDNEW
« no previous file with comments | « net/third_party/nss/patches/falsestartnpn.patch ('k') | net/third_party/nss/patches/getrequestedclientcerttypes.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698