From: Wayne Davison Date: Tue, 27 Jan 2004 01:27:37 +0000 (+0000) Subject: Tweaked a comment. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/9e4c32ea54c4db458e75185482aea5a7a1656d45 Tweaked a comment. --- diff --git a/flist.c b/flist.c index 26ecb3cc..100ae9f0 100644 --- a/flist.c +++ b/flist.c @@ -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;