diff options
author | Wayne Davison <wayned@samba.org> | 2009-03-13 08:49:53 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2009-03-13 08:49:53 -0700 |
commit | 778124188914358b2a1d4e0046401acf6551ea76 (patch) | |
tree | 51c75d16653f2396f8ddcd7973ec969cf1f29e9a /flist.c | |
parent | b5473dd4a97681c98fee632d07c34bade9b204d6 (diff) | |
download | rsync-778124188914358b2a1d4e0046401acf6551ea76.tar.gz rsync-778124188914358b2a1d4e0046401acf6551ea76.tar.bz2 rsync-778124188914358b2a1d4e0046401acf6551ea76.zip |
Make missing args governed by protect filters, not hide.
Diffstat (limited to 'flist.c')
-rw-r--r-- | flist.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2189,7 +2189,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) } /* A dot-dir should not be excluded! */ - if (name_type != DOTDIR_NAME + if (name_type != DOTDIR_NAME && st.st_mode != 0 && is_excluded(fbuf, S_ISDIR(st.st_mode) != 0, ALL_FILTERS)) continue; |