X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6dd1782c42ed166c03ba5ac5a033cf1061167510..cbbe4892087b74fb8ed2aac6078ee933ac02e920:/flist.c diff --git a/flist.c b/flist.c index 8a995000..0cb82144 100644 --- a/flist.c +++ b/flist.c @@ -203,7 +203,6 @@ void receive_file_entry_v11(struct file_struct *file, if (preserve_devices && IS_DEVICE(file->mode)) file->rdev = (flags & SAME_RDEV) ? last_rdev : (dev_t)read_int(f); -#if SUPPORT_LINKS if (preserve_links && S_ISLNK(file->mode)) { int l = read_int(f); file->link = (char *)malloc(l+1); @@ -211,7 +210,6 @@ void receive_file_entry_v11(struct file_struct *file, read_buf(f,file->link,l); file->link[l] = 0; } -#endif #if SUPPORT_HARD_LINKS if (preserve_hard_links && S_ISREG(file->mode)) {