| OLD | NEW |
| 1 Index: ssl/sslinfo.c | 1 Index: net/third_party/nss/ssl/sslinfo.c |
| 2 =================================================================== | 2 =================================================================== |
| 3 --- ssl/sslinfo.c» (revision 142907) | 3 --- net/third_party/nss/ssl/sslinfo.c» (revision 143014) |
| 4 +++ ssl/sslinfo.c» (working copy) | 4 +++ net/third_party/nss/ssl/sslinfo.c» (revision 143015) |
| 5 @@ -97,11 +97,11 @@ | 5 @@ -97,11 +97,11 @@ |
| 6 } else if (ss->ssl3.initialized) { /* SSL3 and TLS */ | 6 } else if (ss->ssl3.initialized) { /* SSL3 and TLS */ |
| 7 ssl_GetSpecReadLock(ss); | 7 ssl_GetSpecReadLock(ss); |
| 8 /* XXX The cipher suite should be in the specs and this | 8 /* XXX The cipher suite should be in the specs and this |
| 9 - * function should get it from crSpec rather than from the "hs". | 9 - * function should get it from crSpec rather than from the "hs". |
| 10 + * function should get it from cwSpec rather than from the "hs". | 10 + * function should get it from cwSpec rather than from the "hs". |
| 11 * See bug 275744 comment 69. | 11 * See bug 275744 comment 69. |
| 12 */ | 12 */ |
| 13 inf.cipherSuite = ss->ssl3.hs.cipher_suite; | 13 inf.cipherSuite = ss->ssl3.hs.cipher_suite; |
| 14 - inf.compressionMethod = ss->ssl3.crSpec->compression_method; | 14 - inf.compressionMethod = ss->ssl3.crSpec->compression_method; |
| 15 + inf.compressionMethod = ss->ssl3.cwSpec->compression_method; | 15 + inf.compressionMethod = ss->ssl3.cwSpec->compression_method; |
| 16 ssl_ReleaseSpecReadLock(ss); | 16 ssl_ReleaseSpecReadLock(ss); |
| 17 inf.compressionMethodName = | 17 inf.compressionMethodName = |
| 18 ssl_GetCompressionMethodName(inf.compressionMethod); | 18 ssl_GetCompressionMethodName(inf.compressionMethod); |
| 19 @@ -336,7 +336,7 @@ | 19 @@ -336,7 +336,7 @@ |
| 20 ss->ssl3.initialized) { /* TLS */ | 20 ss->ssl3.initialized) { /* TLS */ |
| 21 SECItem *crsName; | 21 SECItem *crsName; |
| 22 ssl_GetSpecReadLock(ss); /*********************************/ | 22 ssl_GetSpecReadLock(ss); /*********************************/ |
| 23 - crsName = &ss->ssl3.crSpec->srvVirtName; | 23 - crsName = &ss->ssl3.crSpec->srvVirtName; |
| 24 + crsName = &ss->ssl3.cwSpec->srvVirtName; | 24 + crsName = &ss->ssl3.cwSpec->srvVirtName; |
| 25 if (crsName->data) { | 25 if (crsName->data) { |
| 26 sniName = SECITEM_DupItem(crsName); | 26 sniName = SECITEM_DupItem(crsName); |
| 27 } | 27 } |
| OLD | NEW |