From 398612ba07574d84e51380513c7c3424ac84eef0 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 17 Apr 2006 19:53:41 +0000 Subject: [PATCH] Fixed a bug where special files were not getting hard-linked via the --link-dest option. --- generator.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/generator.c b/generator.c index 518f49ea..40159f91 100644 --- a/generator.c +++ b/generator.c @@ -703,27 +703,32 @@ static int try_dests_non(struct file_struct *file, char *fname, int ndx, int itemizing, int maybe_ATTRS_REPORT, enum logcode code) { - char fnamebuf[MAXPATHLEN], lnk[MAXPATHLEN]; + char fnamebuf[MAXPATHLEN]; STRUCT_STAT st; - int len, i = 0; + int i = 0; do { pathjoin(fnamebuf, MAXPATHLEN, basis_dir[i], fname); if (link_stat(fnamebuf, &st, 0) < 0 || S_ISDIR(st.st_mode) || !unchanged_attrs(file, &st)) continue; +#ifdef CAN_HARDLINK_SYMLINK if (S_ISLNK(file->mode)) { #ifdef SUPPORT_LINKS + char lnk[MAXPATHLEN]; + int len; if ((len = readlink(fnamebuf, lnk, MAXPATHLEN-1)) <= 0) continue; lnk[len] = '\0'; if (strcmp(lnk, file->u.link) != 0) #endif continue; - } else { - if (!IS_DEVICE(st.st_mode) || st.st_rdev != file->u.rdev) - continue; - } + } else +#endif + if (IS_DEVICE(st.st_mode) != IS_DEVICE(file->mode) + || IS_SPECIAL(st.st_mode) != IS_SPECIAL(file->mode) + || st.st_rdev != file->u.rdev) + continue; if (link_dest) { if (do_link(fnamebuf, fname) < 0) { rsyserr(FERROR, errno, -- 2.34.1