diff options
author | Wayne Davison <wayned@samba.org> | 2004-01-27 01:27:37 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2004-01-27 01:27:37 +0000 |
commit | 9e4c32ea54c4db458e75185482aea5a7a1656d45 (patch) | |
tree | 1964c7e68c17df20b5c2c9c987221f56d30133e0 /flist.c | |
parent | a5f9cff25633e7839f173b889a4782297054cbd7 (diff) | |
download | rsync-9e4c32ea54c4db458e75185482aea5a7a1656d45.tar.gz |
Tweaked a comment.
Diffstat (limited to 'flist.c')
-rw-r--r-- | flist.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -443,7 +443,7 @@ void send_file_entry(struct file_struct *file, int f, unsigned short base_flags) /* We must make sure we don't send a zero flags byte or * the other end will terminate the flist transfer. */ if (flags == 0 && !S_ISDIR(mode)) - flags |= XMIT_TOP_DIR; /* Will be stripped off by receiver. */ + flags |= XMIT_TOP_DIR; /* NOTE: no meaning for non-dir */ if (protocol_version >= 28) { if ((flags & 0xFF00) || flags == 0) { flags |= XMIT_EXTENDED_FLAGS; |