diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-01-23 13:16:30 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-01-23 13:16:30 +0000 |
commit | b315601ce07701c4913c48a269775ab3284b25ba (patch) | |
tree | 9ebb557a3513eceb9f250424f35443fea900518f /flist.c | |
parent | 5f808dfbd71b0e40d0fd2976dceb2feaf024b6ca (diff) | |
download | rsync-b315601ce07701c4913c48a269775ab3284b25ba.tar.gz rsync-b315601ce07701c4913c48a269775ab3284b25ba.tar.bz2 rsync-b315601ce07701c4913c48a269775ab3284b25ba.zip |
removed Daves include-only optimisation. One of the bug reports turned
out to be caused by it and it seems rather a lot of extra effort for
what must really be a minor optimisation in most cases
Diffstat (limited to 'flist.c')
-rw-r--r-- | flist.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -737,8 +737,7 @@ struct file_list *send_file_list(int f,int argc,char *argv[]) if (one_file_system) set_filesystem(fname); - if (!recurse || !send_included_file_names(f,flist)) - send_file_name(f,flist,fname,recurse,FLAG_DELETE); + send_file_name(f,flist,fname,recurse,FLAG_DELETE); if (olddir != NULL) { flist_dir = NULL; |