From: Wayne Davison Date: Mon, 31 Mar 2008 14:46:47 +0000 (-0700) Subject: A simple change to change_pathname() to ensure that the error output X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5b83829669d9c7e276aeaf8027e112f0aa08dd29?ds=sidebyside A simple change to change_pathname() to ensure that the error output mentions the right path when dir == NULL. --- diff --git a/flist.c b/flist.c index 4e302aa6..b0b05dc9 100644 --- a/flist.c +++ b/flist.c @@ -366,19 +366,23 @@ int change_pathname(struct file_struct *file, const char *dir, int dirlen) change_dir(orig_dir, CD_SKIP_CHDIR); } - if (!change_dir(dir ? dir : orig_dir, CD_NORMAL)) { + pathname = dir; + pathname_len = dirlen; + + if (!dir) + dir = orig_dir; + + if (!change_dir(dir, CD_NORMAL)) { chdir_error: io_error |= IOERR_GENERAL; rsyserr(FERROR, errno, "change_dir %s failed", full_fname(dir)); - change_dir(orig_dir, CD_NORMAL); + if (dir != orig_dir) + change_dir(orig_dir, CD_NORMAL); pathname = NULL; pathname_len = 0; return 0; } - pathname = dir; - pathname_len = dirlen; - return 1; }