Bug 3076 - Unsuitable error message in flist.c.
Summary: Unsuitable error message in flist.c.
Status: CLOSED FIXED
Alias: None
Product: rsync
Classification: Unclassified
Component: core (show other bugs)
Version: 2.6.5
Hardware: All Linux
: P3 normal (vote)
Target Milestone: ---
Assignee: Wayne Davison
QA Contact: Rsync QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-09 01:52 UTC by Takashi MATSUO
Modified: 2006-03-12 02:56 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Takashi MATSUO 2005-09-09 01:52:20 UTC
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------------------------
Comment 1 Wayne Davison 2005-09-09 09:17:14 UTC
Thanks for the patch -- I've committed the fix to CVS.