Skip to content

Commit 7ab4abf

Browse files
author
Artiom N.
committed
OOB example message unification
1 parent 4fe9926 commit 7ab4abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/book01/ch06/cpp/oob_example/oob_server_async.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void recv_data(
3636
{
3737
if (auto e_code = sock_wrap.get_last_error_code(); EINTR == e_code || EAGAIN == e_code)
3838
{
39-
std::cout << "recv was broken by signal!" << std::endl;
39+
std::cout << "recv was interrupted!" << std::endl;
4040
}
4141
else
4242
throw std::system_error(e_code, std::system_category(), "recv data");

0 commit comments

Comments
 (0)