From ae1c6cc6807eee3f33c36bcd101cb9d5dbffb1b4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 14 Nov 2018 18:57:42 -0800 Subject: [PATCH] ircd::net: Catch std::system_error rather than boost here. --- ircd/net.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ircd/net.cc b/ircd/net.cc index 41bda9042..637e7d558 100644 --- a/ircd/net.cc +++ b/ircd/net.cc @@ -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 {