fixed incorrect error message in async_accept

This commit is contained in:
Arvid Norberg 2008-03-16 12:33:39 +00:00
parent 4e9ed2dc96
commit 32c2c38737
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ namespace aux {
if (m_alerts.should_post(alert::fatal))
{
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));
}
return;