| OLD | NEW |
| (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 } |
| OLD | NEW |