Re: fix symlink read in openrsync

2021-10-22 Thread Klemens Nanni
On Fri, Oct 22, 2021 at 11:50:03AM +0200, Claudio Jeker wrote: > flist_gen_dirent() does a fts_read and inside that tries to read the > symlink information. Now since fts_open did not specifiy FTS_NOCHDIR > the symlink_read call needs to use ent->fts_accpath instead of f->path > which was based on

fix symlink read in openrsync

2021-10-22 Thread Claudio Jeker
flist_gen_dirent() does a fts_read and inside that tries to read the symlink information. Now since fts_open did not specifiy FTS_NOCHDIR the symlink_read call needs to use ent->fts_accpath instead of f->path which was based on ent->fts_path. OK? -- :wq Claudio Index: flist.c