Skip to content

Commit

Permalink
Daily arc lint --take CLANGFORMAT
Browse files Browse the repository at this point in the history
Reviewed By: ivanmurashko

Differential Revision: D49272148

fbshipit-source-id: 2b8f83363c8c022fd169a34ca3cd7b940c033714
  • Loading branch information
generatedunixname89002005325676 authored and facebook-github-bot committed Sep 14, 2023
1 parent 6734ef8 commit 69b3f86
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mcrouter/lib/network/McSSLUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,11 @@ McSSLUtil::dropCertificateX509Payload(folly::AsyncSSLSocket& sock) noexcept {
if (func) {
return func(sock);
} else {
return {folly::ssl::BasicTransportCertificate::create(sock.getSelfCertificate()),
folly::ssl::BasicTransportCertificate::create(sock.getPeerCertificate())};
return {
folly::ssl::BasicTransportCertificate::create(
sock.getSelfCertificate()),
folly::ssl::BasicTransportCertificate::create(
sock.getPeerCertificate())};
}
}

Expand Down

0 comments on commit 69b3f86

Please sign in to comment.