From 3dbb3d4c269ecf28f25d857aa8a4e5c1109ee5e8 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 5 Oct 2007 01:11:33 +0000 Subject: r25510: Now we're returning the port instead of using a global, remember to use ntohs. Hopefully will fix the build farm. Jeremy. (This used to be commit 5174acccb589edbfbe4ba633f4178f7200d7d6c4) --- source3/lib/util_sock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index bcc1e8e15e..f77fcc9968 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -319,12 +319,12 @@ ssize_t read_udp_v4_socket(int fd, } if (psa->ss_family != AF_INET) { - DEBUG(2,("read_udp_v4_socket:: invalid address family %d " + DEBUG(2,("read_udp_v4_socket: invalid address family %d " "(not IPv4)\n", (int)psa->ss_family)); return 0; } - DEBUG(10,("read_udp_socket: ip %s port %d read: %lu\n", + DEBUG(10,("read_udp_v4_socket: ip %s port %d read: %lu\n", inet_ntoa(si->sin_addr), si->sin_port, (unsigned long)ret)); -- cgit