I'm seeing this assertion failure:
hlink.c:610: failed assertion `node != NULL && node->data != NULL'
In this block of code:
if (inc_recurse) {
int gnum = F_HL_GNUM(file);
struct ht_int32_node *node = hashtable_find(prior_hlinks, gnum, 0);
--> assert(node != NULL && node->data != NULL);
assert(CVAL(node->data, 0) == 0);
free(node->data);
if (!(node->data = strdup(our_name)))
out_of_memory("finish_hard_link");
}
rsync (3.0.6) is being called with something like this:
rsync -aHANXx --force-change --fileflags --numeric-ids --protect-decmpfs
--delete-during --filter=._/path/to/filter /Volumes/HFS_Source/
/Volumes/HFS_Destination
I'm not really sure where to begin troubleshooting this, any suggestions?
Thanks,
Mike
--
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html