[Bug 3076] New: Unsuitable error message in flist.c.

samba-bugs at samba.org samba-bugs at samba.org
Fri Sep 9 08:52:21 GMT 2005


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 at samba.org
        ReportedBy: tmatsuo at 10art-ni.co.jp
         QAContact: rsync-qa at 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.


More information about the rsync mailing list