From 74fd1cf1aa94af7b8361ad905670386a642e1463 Mon Sep 17 00:00:00 2001 From: alfred Date: Tue, 20 Mar 2001 20:28:09 +0000 Subject: whitespace cleanup --- lib/libc/rpc/svc_vc.c | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'lib/libc/rpc') diff --git a/lib/libc/rpc/svc_vc.c b/lib/libc/rpc/svc_vc.c index add21ee..1006988 100644 --- a/lib/libc/rpc/svc_vc.c +++ b/lib/libc/rpc/svc_vc.c @@ -412,23 +412,21 @@ read_vc(xprtp, buf, len) sock = xprt->xp_fd; - do { - pollfd.fd = sock; - pollfd.events = POLLIN; + do { + pollfd.fd = sock; + pollfd.events = POLLIN; pollfd.revents = 0; - switch (_poll(&pollfd, 1, milliseconds)) { - case -1: - if (errno == EINTR) { - continue; - } - /*FALLTHROUGH*/ - case 0: - goto fatal_err; - - default: - break; - } - } while ((pollfd.revents & POLLIN) == 0); + switch (_poll(&pollfd, 1, milliseconds)) { + case -1: + if (errno == EINTR) + continue; + /*FALLTHROUGH*/ + case 0: + goto fatal_err; + default: + break; + } + } while ((pollfd.revents & POLLIN) == 0); sa = (struct sockaddr *)xprt->xp_rtaddr.buf; if (sa->sa_family == AF_LOCAL) { -- cgit v1.1