From: jkaeber Date: Mon, 3 Mar 2008 14:52:47 +0000 (+0000) Subject: added even more meaningful exception text to unix domain sockets X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=69e1a35037220ae9302879f5b17df678a5f24662;p=senf.git added even more meaningful exception text to unix domain sockets git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@725 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Socket/Protocols/UN/UNDatagramSocketHandle.cc b/Socket/Protocols/UN/UNDatagramSocketHandle.cc index b7221a6..7586683 100644 --- a/Socket/Protocols/UN/UNDatagramSocketHandle.cc +++ b/Socket/Protocols/UN/UNDatagramSocketHandle.cc @@ -51,7 +51,7 @@ prefix_ void senf::UNDatagramSocketProtocol::init_client(UNSocketAddress const & try { clientHandle().bind(address); } catch (SystemException & e) { - e << "Could not bind to address " << address.path(); + e << "; could not bind to address \"" << address.path() << "\""; throw; } }