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

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

Issue 10542176: SSL_GetChannelInfo and SSL_GetNegotiatedHostInfo should use (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add the upstream NSS bug number Created 8 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 | « net/third_party/nss/patches/applypatches.sh ('k') | net/third_party/nss/ssl/sslinfo.c » ('j') | 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: ssl/sslinfo.c
2 ===================================================================
3 --- ssl/sslinfo.c (revision 142907)
4 +++ ssl/sslinfo.c (working copy)
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/applypatches.sh ('k') | net/third_party/nss/ssl/sslinfo.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698