diff --git a/fizz/tool/FizzClientCommand.cpp b/fizz/tool/FizzClientCommand.cpp index d6d0067c22..ee246dd432 100644 --- a/fizz/tool/FizzClientCommand.cpp +++ b/fizz/tool/FizzClientCommand.cpp @@ -528,10 +528,11 @@ int fizzClientCommand(const std::vector& args) { bool early = false; std::string proxyHost = ""; uint16_t proxyPort = 0; - std::vector ciphers { - CipherSuite::TLS_AES_128_GCM_SHA256, CipherSuite::TLS_AES_256_GCM_SHA384, + std::vector ciphers{ + CipherSuite::TLS_AES_128_GCM_SHA256, + CipherSuite::TLS_AES_256_GCM_SHA384, #if FOLLY_OPENSSL_HAS_CHACHA - CipherSuite::TLS_CHACHA20_POLY1305_SHA256, + CipherSuite::TLS_CHACHA20_POLY1305_SHA256, #endif }; std::vector sigSchemes{ diff --git a/fizz/tool/FizzServerCommand.cpp b/fizz/tool/FizzServerCommand.cpp index a6a64ed6d4..bf4810045c 100644 --- a/fizz/tool/FizzServerCommand.cpp +++ b/fizz/tool/FizzServerCommand.cpp @@ -656,12 +656,11 @@ int fizzServerCommand(const std::vector& args) { #ifdef FIZZ_TOOL_ENABLE_OQS bool useHybridKexFactory = false; #endif - std::vector> ciphers { - {CipherSuite::TLS_AES_128_GCM_SHA256, CipherSuite::TLS_AES_256_GCM_SHA384}, + std::vector> ciphers{ + {CipherSuite::TLS_AES_128_GCM_SHA256, + CipherSuite::TLS_AES_256_GCM_SHA384}, #if FOLLY_OPENSSL_HAS_CHACHA - { - CipherSuite::TLS_CHACHA20_POLY1305_SHA256 - } + {CipherSuite::TLS_CHACHA20_POLY1305_SHA256} #endif }; std::vector sigSchemes{