From d1031e53682c8ed4ee817266ab4c928ae8433d7d Mon Sep 17 00:00:00 2001
From: jkaeber <jkaeber@wiback.org>
Date: Mon, 3 Mar 2008 14:52:47 +0000
Subject: [PATCH] added even more meaningful exception text to unix domain
 sockets

---
 Socket/Protocols/UN/UNDatagramSocketHandle.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Socket/Protocols/UN/UNDatagramSocketHandle.cc b/Socket/Protocols/UN/UNDatagramSocketHandle.cc
index b7221a67f..75866830e 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;
     }
 }
-- 
GitLab