Skip to content

Commit 2f8f2cd

Browse files
authored
Merge pull request ceph#66107 from yuvalif/wip-yuval-fix-typo
rgw/frontend: fix typo in function name Reviewed-by: Casey Bodley <[email protected]>
2 parents 5a04ecc + 20743ee commit 2f8f2cd

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)