summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2001-03-20 20:28:09 +0000
committeralfred <alfred@FreeBSD.org>2001-03-20 20:28:09 +0000
commit74fd1cf1aa94af7b8361ad905670386a642e1463 (patch)
tree6dc755430866767794952ccb2eb9fa6523c8df49 /lib/libc/rpc
parent2ce61f7c6bdfd5a176fc47276a75238aa03035a5 (diff)
downloadFreeBSD-src-74fd1cf1aa94af7b8361ad905670386a642e1463.zip
FreeBSD-src-74fd1cf1aa94af7b8361ad905670386a642e1463.tar.gz
whitespace cleanup
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r--lib/libc/rpc/svc_vc.c30
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) {
OpenPOWER on IntegriCloud