diff options
author | alfred <alfred@FreeBSD.org> | 2001-03-20 20:28:09 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2001-03-20 20:28:09 +0000 |
commit | 74fd1cf1aa94af7b8361ad905670386a642e1463 (patch) | |
tree | 6dc755430866767794952ccb2eb9fa6523c8df49 | |
parent | 2ce61f7c6bdfd5a176fc47276a75238aa03035a5 (diff) | |
download | FreeBSD-src-74fd1cf1aa94af7b8361ad905670386a642e1463.zip FreeBSD-src-74fd1cf1aa94af7b8361ad905670386a642e1463.tar.gz |
whitespace cleanup
-rw-r--r-- | lib/libc/rpc/svc_vc.c | 30 |
1 files changed, 14 insertions, 16 deletions
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) { |