added even more meaningful exception text to unix domain sockets
jkaeber [Mon, 3 Mar 2008 14:52:47 +0000 (14:52 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@725 270642c3-0616-0410-b53a-bc976706d245

Socket/Protocols/UN/UNDatagramSocketHandle.cc

index b7221a6..7586683 100644 (file)
@@ -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;
     }
 }