*** empty log message ***

This commit is contained in:
Andrew Tridgell
1998-01-13 19:25:59 +00:00
parent 13dc412d76
commit 6bbbc08b83
2 changed files with 3 additions and 1 deletions

View File

@@ -30,7 +30,9 @@ OBJS=$(OBJS1) flist.o io.o compat.o hlink.o token.o uidlist.o $(LIBOBJ)
all: rsync
install: all
-mkdir -p ${INSTALL_BIN}
${INSTALLCMD} -m 755 rsync ${INSTALL_BIN}
-mkdir -p ${INSTALL_MAN}/man1
${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${INSTALL_MAN}/man1
rsync: $(OBJS)

View File

@@ -406,7 +406,7 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out)
return;
}
if (update_only && st.st_mtime >= file->modtime) {
if (update_only && st.st_mtime > file->modtime) {
if (verbose > 1)
fprintf(FERROR,"%s is newer\n",fname);
return;