Skip to content

Commit 20743ee

Browse files
committed
rgw/frontend: fix typo in function name
regression from: d8a3f3e Signed-off-by: Yuval Lifshitz <[email protected]>
1 parent a6656df commit 20743ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rgw/rgw_asio_frontend.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ void AsioFrontend::on_accept(Listener& l, tcp::socket stream)
11901190
#ifdef __cpp_lib_atomic_shared_ptr
11911191
const auto ssl_ctx = ssl_context.load(std::memory_order_acquire);
11921192
#else
1193-
const auto ssl_ctx = std::atomic_load_excplicit(&ssl_context, std::memory_order_acquire);
1193+
const auto ssl_ctx = std::atomic_load_explicit(&ssl_context, std::memory_order_acquire);
11941194
#endif
11951195
boost::asio::spawn(make_strand(context), std::allocator_arg, make_stack_allocator(),
11961196
[this, s=std::move(stream), ssl_ctx] (boost::asio::yield_context yield) mutable {

0 commit comments

Comments
 (0)