From a070c37b7e880ac3593c35da448fe7303e797004 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 26 Mar 1998 06:09:04 +0000 Subject: [PATCH] fixed a bug I introduced in the last big commit --- io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/io.c b/io.c index b5ceff12..a557a9b8 100644 --- a/io.c +++ b/io.c @@ -134,6 +134,7 @@ static int readfd(int fd,char *buffer,int N) memcpy(buffer+total,read_buffer_p,ret); read_buffer_p += ret; read_buffer_len -= ret; + total += ret; continue; } -- 2.34.1