mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
ircd::net: Catch std::system_error rather than boost here.
This commit is contained in:
parent
76913eb6ab
commit
ae1c6cc680
1 changed files with 2 additions and 2 deletions
|
@ -1291,7 +1291,7 @@ catch(const ctx::interrupted &e)
|
|||
|
||||
joining.notify_all();
|
||||
}
|
||||
catch(const boost::system::system_error &e)
|
||||
catch(const std::system_error &e)
|
||||
{
|
||||
log::derror
|
||||
{
|
||||
|
@ -1387,7 +1387,7 @@ catch(const ctx::interrupted &e)
|
|||
|
||||
joining.notify_all();
|
||||
}
|
||||
catch(const boost::system::system_error &e)
|
||||
catch(const std::system_error &e)
|
||||
{
|
||||
log::derror
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue