forked from premiere/premiere-libtorrent
fixed incorrect error message in async_accept
This commit is contained in:
parent
4e9ed2dc96
commit
32c2c38737
|
@ -632,7 +632,7 @@ namespace aux {
|
||||||
if (m_alerts.should_post(alert::fatal))
|
if (m_alerts.should_post(alert::fatal))
|
||||||
{
|
{
|
||||||
std::string msg = "error accepting connection on '"
|
std::string msg = "error accepting connection on '"
|
||||||
+ boost::lexical_cast<std::string>(ep) + "' " + ec.message();
|
+ boost::lexical_cast<std::string>(ep) + "' " + e.message();
|
||||||
m_alerts.post_alert(listen_failed_alert(ep, msg));
|
m_alerts.post_alert(listen_failed_alert(ep, msg));
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue