This is a discussion on [Bug 3076] New: Unsuitable error message in flist.c. - Tools ; https://bugzilla.samba.org/show_bug.cgi?id=3076 Summary: Unsuitable error message in flist.c. Product: rsync Version: 2.6.5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: tmatsuo@10art-ni.co.jp QAContact: rsync-qa@samba.org I got an unsuitable error message when pop_dir() function call failed. ...
https://bugzilla.samba.org/show_bug.cgi?id=3076
Summary: Unsuitable error message in flist.c.
Product: rsync
Version: 2.6.5
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: tmatsuo@10art-ni.co.jp
QAContact: rsync-qa@samba.org
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------------------------
--
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
--
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html