From 7d164498dbad77e2072eaae9e421ee1c45336257 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 15 Aug 2010 15:30:21 +0200 Subject: s3: Lift smbd_server_fd() from read_data() All callers have appropriate debug messages themselves --- source3/lib/util_sock.c | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'source3/lib/util_sock.c') diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index b61a3f703e..74a3e343ac 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -531,25 +531,7 @@ NTSTATUS read_fd_with_timeout(int fd, char *buf, NTSTATUS read_data(int fd, char *buffer, size_t N) { - NTSTATUS status; - - status = read_fd_with_timeout(fd, buffer, N, N, 0, NULL); - if (NT_STATUS_IS_OK(status)) { - return status; - } - if (fd == smbd_server_fd()) { - char addr[INET6_ADDRSTRLEN]; - /* Try and give an error message - * saying what client failed. */ - DEBUG(0, ("read_fd_with_timeout failed for " - "client %s read error = %s.\n", - get_peer_addr(fd,addr,sizeof(addr)), - nt_errstr(status))); - } else { - DEBUG(0, ("read_fd_with_timeout failed, read error = %s.\n", - nt_errstr(status))); - } - return status; + return read_fd_with_timeout(fd, buffer, N, N, 0, NULL); } /**************************************************************************** -- cgit