From 5468623c8c1d19420fa182c5f9ec79e1c15fc33c Mon Sep 17 00:00:00 2001 From: Thulinma Date: Fri, 12 Aug 2011 02:18:44 +0200 Subject: [PATCH] Removed Unix address information from Socket lib - useless --- util/socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/socket.cpp b/util/socket.cpp index 5bb23f9c..ecb1dab5 100644 --- a/util/socket.cpp +++ b/util/socket.cpp @@ -440,7 +440,7 @@ Socket::Connection Socket::Server::accept(bool nonblock){ if (addrinfo.sin6_family == AF_UNIX){ #if DEBUG >= 4 tmp.remotehost = ((sockaddr_un*)&addrinfo)->sun_path; - fprintf(stderr,"Unix addr: %s\n", tmp.remotehost.c_str()); + fprintf(stderr,"Unix socket, no address\n"); #endif tmp.remotehost = "UNIX_SOCKET"; }