diff -u -r --new-file --exclude=CVS rsync-2.0.2/Makefile.in rsync-2.0.3/Makefile.in --- rsync-2.0.2/Makefile.in Thu May 14 17:07:50 1998 +++ rsync-2.0.3/Makefile.in Fri May 15 17:54:13 1998 @@ -30,7 +30,9 @@ .c.o: $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@ -all: rsync rsync.1 rsyncd.conf.5 +all: rsync + +man: rsync.1 rsyncd.conf.5 install: all -mkdir -p ${INSTALL_BIN} @@ -44,12 +46,10 @@ $(CC) $(CFLAGS) -o rsync $(OBJS) $(LIBS) rsync.1: rsync.yo - yodl2man rsync.yo - mv rsync.man rsync.1 + yodl2man -o rsync.1 rsync.yo rsyncd.conf.5: rsyncd.conf.yo - yodl2man rsyncd.conf.yo - mv rsyncd.conf.man rsyncd.conf.5 + yodl2man -o rsyncd.conf.5 rsyncd.conf.yo proto: cat *.c | awk -f mkproto.awk > proto.h diff -u -r --new-file --exclude=CVS rsync-2.0.2/cvs.log rsync-2.0.3/cvs.log --- rsync-2.0.2/cvs.log Fri May 15 17:37:07 1998 +++ rsync-2.0.3/cvs.log Fri May 15 17:55:14 1998 @@ -3850,3 +3850,30 @@ Log Message: preparing for release of 2.0.2 + +**************************************** +Date: Friday May 15, 1998 @ 17:53 +Author: tridge + +Update of /data/cvs/rsync +In directory samba:/tmp/cvs-serv26395 + +Modified Files: + Makefile.in proto.h rsync.1 rsync.yo +Log Message: +use a separate "make man" target so people don't need yodl + + + +**************************************** +Date: Friday May 15, 1998 @ 17:55 +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 2.0.3 + diff -u -r --new-file --exclude=CVS rsync-2.0.2/proto.h rsync-2.0.3/proto.h --- rsync-2.0.2/proto.h Fri May 15 11:03:11 1998 +++ rsync-2.0.3/proto.h Fri May 15 17:54:14 1998 @@ -14,6 +14,9 @@ int start_socket_client(char *host, char *path, int argc, char *argv[]); int daemon_main(void); void setup_protocol(int f_out,int f_in); +void def_initialise(void); +void def_reset(void); +void def_write(int f, char *buf, int nb, int flush); int claim_connection(char *fname,int max_connections); int check_exclude(char *name,char **local_exclude_list); void add_exclude_list(char *pattern,char ***list); @@ -46,6 +49,8 @@ unsigned char read_byte(int f); int sparse_end(int f); int write_file(int f,char *buf,int len); +void io_start_buffering(int fd); +void io_end_buffering(int fd); void write_int(int f,int32 x); void write_longint(int f, int64 x); void write_buf(int f,char *buf,int len); diff -u -r --new-file --exclude=CVS rsync-2.0.2/rsync.1 rsync-2.0.3/rsync.1 --- rsync-2.0.2/rsync.1 Fri May 15 15:43:12 1998 +++ rsync-2.0.3/rsync.1 Fri May 15 17:54:14 1998 @@ -523,7 +523,7 @@ file permissions, devices etc are transferred as native numerical values .PP -see also the comments on the -delete option +see also the comments on the --delete option .PP Please report bugs! The rsync bug tracking system is online at http://samba\&.anu\&.edu\&.au/rsync/ diff -u -r --new-file --exclude=CVS rsync-2.0.2/rsync.yo rsync-2.0.3/rsync.yo --- rsync-2.0.2/rsync.yo Fri May 15 15:43:12 1998 +++ rsync-2.0.3/rsync.yo Fri May 15 17:54:14 1998 @@ -450,7 +450,7 @@ file permissions, devices etc are transferred as native numerical values -see also the comments on the -delete option +see also the comments on the --delete option Please report bugs! The rsync bug tracking system is online at url(http://samba.anu.edu.au/rsync/)(http://samba.anu.edu.au/rsync/) diff -u -r --new-file --exclude=CVS rsync-2.0.2/version.h rsync-2.0.3/version.h --- rsync-2.0.2/version.h Fri May 15 17:36:58 1998 +++ rsync-2.0.3/version.h Fri May 15 17:55:00 1998 @@ -1 +1 @@ -#define VERSION "2.0.2" +#define VERSION "2.0.3"