try {
std::map<int, std::string> ocspResponses = {};
auto ctx = libssl_init_server_context(frontend->d_tlsConfig, ocspResponses);
- } catch (const std::runtime_error& e) {
+ }
+ catch (const std::runtime_error& e) {
errlog("Ignoring DoH frontend: '%s'", e.what());
- return ;
+ return;
}
}
}
try {
std::map<int, std::string> ocspResponses = {};
auto ctx = libssl_init_server_context(frontend->d_tlsConfig, ocspResponses);
- } catch (const std::runtime_error& e) {
+ }
+ catch (const std::runtime_error& e) {
errlog("Ignoring TLS frontend: '%s'", e.what());
- return ;
+ return;
}
}
}