samba-bugs@samba.org
2005-Sep-09 09:02 UTC
[Bug 3076] New: Unsuitable error message in flist.c.
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.