From: Wayne Davison Date: Fri, 9 Jan 2004 16:53:55 +0000 (+0000) Subject: Added an extra comment. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/0c42946536087bc2caa4d5d1fe4569c7c097c941 Added an extra comment. --- diff --git a/flist.c b/flist.c index 46079d96..f1b054f5 100644 --- a/flist.c +++ b/flist.c @@ -470,7 +470,8 @@ static void send_file_entry(struct file_struct *file, int f, write_int(f, gid); } if (preserve_devices && IS_DEVICE(mode)) { - /* If SAME_HIGH_RDEV is off, SAME_RDEV_pre28 is also off. */ + /* If SAME_HIGH_RDEV is off, SAME_RDEV_pre28 is also off. + * Also, avoid using "rdev" because it may be incomplete. */ if (!(flags & SAME_HIGH_RDEV)) write_int(f, file->rdev); else if (protocol_version >= 28)