From a84b6f26a98ab3caf35e428db958219ae93aa572 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Fri, 6 Oct 2017 17:48:58 -0400 Subject: [PATCH] Fix comment. Clients need not accept CertificateRequest. We don't, have no intention to, and post-handshake auth now requires an extension. Change-Id: I2160c89e4a6988a7d743052b588d8aa2598ffabf Reviewed-on: https://boringssl-review.googlesource.com/21305 Commit-Queue: David Benjamin CQ-Verified: CQ bot account: commit-bot@chromium.org Reviewed-by: Steven Valdez --- ssl/handshake.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ssl/handshake.cc b/ssl/handshake.cc index b54a0bb2..d599aec4 100644 --- a/ssl/handshake.cc +++ b/ssl/handshake.cc @@ -206,8 +206,7 @@ size_t ssl_max_handshake_message_len(const SSL *ssl) { return 1; } - // Clients must accept NewSessionTicket and CertificateRequest, so allow the - // default size. + // Clients must accept NewSessionTicket, so allow the default size. return kMaxMessageLen; }