Index: net/third_party/nss/ssl/ssl3con.c |
=================================================================== |
--- net/third_party/nss/ssl/ssl3con.c (revision 53655) |
+++ net/third_party/nss/ssl/ssl3con.c (working copy) |
@@ -5748,7 +5748,7 @@ |
else |
ss->ssl3.hs.ws = wait_change_cipher; |
- /* Do the handshake callback for sslv3 here. */ |
+ /* Do the handshake callback for sslv3 here, if we can false start. */ |
if (ss->handshakeCallback != NULL && ssl3_CanFalseStart(ss)) { |
(ss->handshakeCallback)(ss->fd, ss->handshakeCallbackData); |
} |
@@ -8570,7 +8570,7 @@ |
} |
ss->ssl3.hs.ws = idle_handshake; |
- /* Do the handshake callback for sslv3 here. */ |
+ /* Do the handshake callback for sslv3 here, if we cannot false start. */ |
if (ss->handshakeCallback != NULL && !ssl3_CanFalseStart(ss)) { |
(ss->handshakeCallback)(ss->fd, ss->handshakeCallbackData); |
} |