From: Amos Jeffries Date: Tue, 21 Apr 2015 13:41:25 +0000 (-0700) Subject: Bug 4231 pt2: comm_open_uds does not provide description for newly opened FD X-Git-Tag: merge-candidate-3-v1~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04efe9dde6e05c3a913ef918ff51c35d347cd874;p=thirdparty%2Fsquid.git Bug 4231 pt2: comm_open_uds does not provide description for newly opened FD Thanks to Alex Dowad for identifying the problem. --- diff --git a/src/comm.cc b/src/comm.cc index 68d9a200a9..89786f57f0 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1894,7 +1894,7 @@ comm_open_uds(int sock_type, debugs(50, 5, HERE << "FD " << new_socket << " is a new socket"); assert(!isOpen(new_socket)); - fd_open(new_socket, FD_MSGHDR, NULL); + fd_open(new_socket, FD_MSGHDR, addr->sun_path); fdd_table[new_socket].close_file = NULL;