diff -u -r --new-file --exclude=CVS rsync-1.7.0/cvs.log rsync-1.7.1/cvs.log --- rsync-1.7.0/cvs.log Thu Mar 26 15:53:45 1998 +++ rsync-1.7.1/cvs.log Thu Mar 26 17:11:25 1998 @@ -2133,3 +2133,46 @@ Log Message: preparing for release of 1.7.0 + +**************************************** +Date: Thursday March 26, 1998 @ 16:48 +Author: tridge + +Update of /data/cvs/rsync +In directory samba:/tmp/cvs-serv24686 + +Modified Files: + flist.c +Log Message: + +added some debugging code + + + +**************************************** +Date: Thursday March 26, 1998 @ 17:09 +Author: tridge + +Update of /data/cvs/rsync +In directory samba:/tmp/cvs-serv11486 + +Modified Files: + io.c +Log Message: + +fixed a bug I introduced in the last big commit + + + +**************************************** +Date: Thursday March 26, 1998 @ 17:11 +Author: rsync-bu + +Update of /data/cvs/rsync +In directory samba:/data/people/rsync-bugs/rsync + +Modified Files: + version.h +Log Message: +preparing for release of 1.7.1 + diff -u -r --new-file --exclude=CVS rsync-1.7.0/flist.c rsync-1.7.1/flist.c --- rsync-1.7.0/flist.c Thu Mar 26 15:51:10 1998 +++ rsync-1.7.1/flist.c Thu Mar 26 17:10:59 1998 @@ -669,6 +669,9 @@ write_int(f, io_error); } + if (verbose > 2) + fprintf(FINFO,"send_file_list done\n"); + return flist; } @@ -740,6 +743,9 @@ if (f != -1 && remote_version >= 17) { io_error |= read_int(f); } + + if (verbose > 2) + fprintf(FINFO,"recv_file_list done\n"); return flist; diff -u -r --new-file --exclude=CVS rsync-1.7.0/io.c rsync-1.7.1/io.c --- rsync-1.7.0/io.c Thu Mar 26 15:51:10 1998 +++ rsync-1.7.1/io.c Thu Mar 26 17:10:59 1998 @@ -134,6 +134,7 @@ memcpy(buffer+total,read_buffer_p,ret); read_buffer_p += ret; read_buffer_len -= ret; + total += ret; continue; } diff -u -r --new-file --exclude=CVS rsync-1.7.0/version.h rsync-1.7.1/version.h --- rsync-1.7.0/version.h Thu Mar 26 15:53:34 1998 +++ rsync-1.7.1/version.h Thu Mar 26 17:11:16 1998 @@ -1 +1 @@ -#define VERSION "1.7.0" +#define VERSION "1.7.1"