From 77076b01d286ad296930cd83cafc3a4bf0ae5db6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 25 Apr 2001 01:52:54 +0000 Subject: merge from 2_2 (This used to be commit b9137b613dc8cb45cbebfc6e57e20fde0517347a) --- source3/nsswitch/wb_common.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source3/nsswitch/wb_common.c') diff --git a/source3/nsswitch/wb_common.c b/source3/nsswitch/wb_common.c index 3671cf2e4f..98a4b6758b 100644 --- a/source3/nsswitch/wb_common.c +++ b/source3/nsswitch/wb_common.c @@ -168,7 +168,6 @@ int write_sock(void *buffer, int count) while(nwritten < count) { struct timeval tv; fd_set r_fds; - int selret; /* Catch pipe close on other end by checking if a read() call would not block by calling select(). */ @@ -177,8 +176,8 @@ int write_sock(void *buffer, int count) FD_SET(established_socket, &r_fds); ZERO_STRUCT(tv); - if ((selret = select(established_socket + 1, &r_fds, - NULL, NULL, &tv)) == -1) { + if (select(established_socket + 1, &r_fds, + NULL, NULL, &tv) == -1) { close_sock(); return -1; /* Select error */ } -- cgit