Chromium Code Reviews| Index: net/third_party/nss/ssl/ssl3gthr.c |
| =================================================================== |
| --- net/third_party/nss/ssl/ssl3gthr.c (revision 222795) |
| +++ net/third_party/nss/ssl/ssl3gthr.c (working copy) |
| @@ -374,9 +374,7 @@ |
| */ |
| if (ss->opt.enableFalseStart) { |
| ssl_GetSSL3HandshakeLock(ss); |
| - canFalseStart = (ss->ssl3.hs.ws == wait_change_cipher || |
| - ss->ssl3.hs.ws == wait_new_session_ticket) && |
|
wtc
2013/09/18 22:57:23
agl: do you remember why ss->ssl3.hs.ws == wait_fi
|
| - ssl3_CanFalseStart(ss); |
| + canFalseStart = ss->ssl3.hs.canFalseStart; |
| ssl_ReleaseSSL3HandshakeLock(ss); |
| } |
| } while (ss->ssl3.hs.ws != idle_handshake && |