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: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
         QAContact: [EMAIL PROTECTED]


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

Reply via email to