| Index: net/socket/ssl_client_socket_nss.cc
|
| ===================================================================
|
| --- net/socket/ssl_client_socket_nss.cc (revision 113418)
|
| +++ net/socket/ssl_client_socket_nss.cc (working copy)
|
| @@ -1717,7 +1717,6 @@
|
| return MapNSSError(PORT_GetError());
|
|
|
| GotoState(STATE_HANDSHAKE);
|
| - set_was_origin_bound_cert_sent(true);
|
| return OK;
|
| }
|
|
|
| @@ -2273,9 +2272,7 @@
|
| // Synchronous success.
|
| int result = ImportOBCertAndKey(result_certificate,
|
| result_private_key);
|
| - if (result == OK)
|
| - set_was_origin_bound_cert_sent(true);
|
| - else
|
| + if (result != OK)
|
| rv = SECFailure;
|
| } else {
|
| rv = SECFailure; // Synchronous failure.
|
|
|