From: Wayne Davison Date: Tue, 23 Mar 2004 16:36:00 +0000 (+0000) Subject: Got rid of an ancient (and no longer relevant) comment. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1e82e2cea6b34a658a91257d53aabc46f5791a89 Got rid of an ancient (and no longer relevant) comment. --- diff --git a/receiver.c b/receiver.c index 75bf0cea..da383be7 100644 --- a/receiver.c +++ b/receiver.c @@ -69,9 +69,8 @@ static int is_backup_file(char *fn) } -/* this deletes any files on the receiving side that are not present - * on the sending side. For version 1.6.4 I have changed the behaviour - * to match more closely what most people seem to expect of this option */ +/* This deletes any files on the receiving side that are not present + * on the sending side. */ void delete_files(struct file_list *flist) { struct file_list *local_file_list; @@ -90,7 +89,7 @@ void delete_files(struct file_list *flist) return; } - for (j = 0;j < flist->count; j++) { + for (j = 0; j < flist->count; j++) { if (!(flist->files[j]->flags & FLAG_TOP_DIR) || !S_ISDIR(flist->files[j]->mode)) continue;