Commit 138ec442 authored by David Benjamin's avatar David Benjamin Committed by Commit Bot

Use non-deprecated name for SSL_R_TLSV1_CERTIFICATE_REQUIRED.

See https://boringssl-review.googlesource.com/c/boringssl/+/42384.

Change-Id: Ib427b9a91208395560d1bac292ed13d78ed02636
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2437928
Auto-Submit: David Benjamin <davidben@chromium.org>
Commit-Queue: Steven Valdez <svaldez@chromium.org>
Reviewed-by: default avatarSteven Valdez <svaldez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#816279}
parent e3922178
...@@ -91,8 +91,8 @@ int MapOpenSSLErrorSSL(uint32_t error_code) { ...@@ -91,8 +91,8 @@ int MapOpenSSLErrorSSL(uint32_t error_code) {
case SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED: case SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED:
case SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN: case SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN:
case SSL_R_TLSV1_ALERT_ACCESS_DENIED: case SSL_R_TLSV1_ALERT_ACCESS_DENIED:
case SSL_R_TLSV1_ALERT_CERTIFICATE_REQUIRED:
case SSL_R_TLSV1_ALERT_UNKNOWN_CA: case SSL_R_TLSV1_ALERT_UNKNOWN_CA:
case SSL_R_TLSV1_CERTIFICATE_REQUIRED:
return ERR_BAD_SSL_CLIENT_AUTH_CERT; return ERR_BAD_SSL_CLIENT_AUTH_CERT;
case SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE: case SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE:
return ERR_SSL_DECOMPRESSION_FAILURE_ALERT; return ERR_SSL_DECOMPRESSION_FAILURE_ALERT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment