| 57 | static struct file_list *hlink_flist; |
| 58 | |
| 59 | void init_hard_links(void) |
| 60 | { |
| 61 | if (am_sender || protocol_version < 30) |
| 62 | dev_tbl = hashtable_create(16, HT_KEY64); |
| 63 | else if (inc_recurse) |
| 64 | prior_hlinks = hashtable_create(1024, HT_KEY32); |
| 65 | } |
| 66 | |
| 67 | struct ht_int64_node *idev_find(int64 dev, int64 ino) |
| 68 | { |
no test coverage detected