From: Wayne Davison Date: Tue, 10 Feb 2004 17:53:52 +0000 (+0000) Subject: If XMIT_HAS_IDEV_DATA is set in receive_file_entry(), we now bomb out X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/97a67bdfa9050ee0a55fe37d42181b5524cbef10 If XMIT_HAS_IDEV_DATA is set in receive_file_entry(), we now bomb out if flist->hlink_pool isn't set (instead of neglecting to read the idev info). --- diff --git a/flist.c b/flist.c index 873ffb8b..ace6484c 100644 --- a/flist.c +++ b/flist.c @@ -659,7 +659,7 @@ void receive_file_entry(struct file_struct **fptr, unsigned short flags, #if SUPPORT_HARD_LINKS if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode)) flags |= XMIT_HAS_IDEV_DATA; - if (flags & XMIT_HAS_IDEV_DATA && flist->hlink_pool) { + if (flags & XMIT_HAS_IDEV_DATA) { INO64_T inode; file->link_u.idev = pool_talloc(flist->hlink_pool, struct idev, 1, "inode_table");