From e8d6fe62614f1bd21a41aa779188d9d0ec57de22 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 19 Feb 2009 23:09:20 -0800 Subject: [PATCH] Properly indent some lines. --- clientserver.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/clientserver.c b/clientserver.c index 49238b1e..b6afe005 100644 --- a/clientserver.c +++ b/clientserver.c @@ -387,16 +387,16 @@ static int read_arg_from_pipe(int fd, char *buf, int limit) char *bp = buf, *eob = buf + limit - 1; while (1) { - int got = read(fd, bp, 1); - if (got != 1) { - if (got < 0 && errno == EINTR) - continue; - return -1; - } - if (*bp == '\0') - break; - if (bp < eob) - bp++; + int got = read(fd, bp, 1); + if (got != 1) { + if (got < 0 && errno == EINTR) + continue; + return -1; + } + if (*bp == '\0') + break; + if (bp < eob) + bp++; } *bp = '\0'; -- 2.34.1