I got an unsuitable error message when pop_dir() function call failed. -------------------actual------------------------- if (!pop_dir(olddir)) { rsyserr(FERROR, errno, "pop_dir %s failed", full_fname(dir)); exit_cleanup(RERR_FILESELECT); } -------------------actual------------------------- -------------------desired------------------------ if (!pop_dir(olddir)) { rsyserr(FERROR, errno, "pop_dir %s failed", full_fname(olddir)); exit_cleanup(RERR_FILESELECT); } -------------------desired------------------------
Thanks for the patch -- I've committed the fix to CVS.