summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-11-11A "make reconfigure" doesn't stop if configure changes.Wayne Davison1-3/+7
2008-11-10Mention Matt's -K --delete fix.Wayne Davison1-0/+3
2008-11-10Add flist_find_ignore_dirness() and change delete_in_dir() to use it.Matt McCutchen2-20/+26
This fixes an issue with -K noticed by eric casteleijn, avoids some inconsistent itemizing when a file/dir is replaced by a dir/file, and removes a now-obsolete chunk of code from make_file().
2008-11-09Mention the fix for --files-from dot/./paths.Wayne Davison1-0/+3
2008-11-09Fixed the use of a dot-dir path (foo/./bar) inside of a files-from file.Wayne Davison2-3/+33
2008-11-09Fixed a bunch of "warn_unused_result" compiler warnings.Wayne Davison7-44/+92
2008-11-09Mention hang fix in the NEWS.Wayne Davison1-0/+2
2008-11-09Avoid a potential hang when --remove-*-files is active.Wayne Davison1-2/+7
2008-11-02The protect filter automatically added with --backup is not perishableMatt McCutchen1-1/+1
(see f41152d39396f0672a97268739c333537579404a), so remove the inaccurate "p" from the man page. Noticed by Jacob Balazer: http://lists.samba.org/archive/rsync/2008-November/022022.html
2008-10-25Mention the getnameinfo() fix in the NEWS.Wayne Davison1-0/+3
2008-10-25Mention rsync's definition of client and server.Wayne Davison1-0/+4
2008-10-25Fixed our supplied getnameinfo()'s ability to do a reverse lookup,Wayne Davison1-6/+3
as reported in bug 5851.
2008-10-14Added another file-list filter to handle odd-ball systems that don'tWayne Davison1-2/+3
seem to size their sprintf() fields correctly.
2008-10-11Preparing for release of 3.0.5pre1v3.0.5pre1Wayne Davison4-11/+11
2008-10-11Mention the latest NEWS.Wayne Davison1-1/+13
2008-10-11Fixed a glitch when using -s with a remote-shell daemon.Wayne Davison1-1/+1
2008-10-11Don't lookup address "0.0.0.0" when we're a remote-shell daemon.Wayne Davison1-0/+3
Gets rid of a DNS delay waiting for a lookup failure.
2008-10-11Fixed send_protected_args() to send "." in place of an empty arg.Wayne Davison1-2/+5
2008-10-11Added a fully atomic update if the user has setup a symlinkWayne Davison1-24/+56
to a *-1 or *-2 directory. A few other minor improvements.
2008-10-10Fix the error message on one of the rename operations.Wayne Davison1-1/+1
2008-09-26Remove bogus "non-empty" qualifier in '*' discussion.Wayne Davison2-1/+18
2008-09-26Properly ignore source args on a --read-batch command.Wayne Davison1-2/+2
2008-09-26Fixed skipping of unneeded updates in a batch file when incrementalWayne Davison4-31/+75
recursion is active. Added a test for this. Made batch-mode handle redos properly (and without hanging).
2008-09-26Moved the flist_ndx_{push,pop}() routines from io.c into util.c.Wayne Davison3-43/+43
2008-09-26Fix the %P logfile escape inside a chroot.Wayne Davison3-46/+72
2008-09-26Initialize xattr data in a couple spots in the hlink code, which avoidsWayne Davison1-4/+33
a crash when the xattr pointer's memory happens to start out non-zero. Also fixed the itemizing of an alt-dest file's xattrs when hard-linking.
2008-09-26Don't send a bogus "-" option to an older server if there wereWayne Davison1-1/+2
no short options specified.
2008-09-26Beginning work on a 3.0.5 release.Wayne Davison3-61/+70
2008-09-06Preparing for release of 3.0.4v3.0.4Wayne Davison6-12/+12
2008-09-06A few more improvements and a mention of the latest fix.Wayne Davison1-4/+9
2008-09-03Changed some "rsync" commands into proper "$RSYNC" commands.Wayne Davison1-5/+5
2008-09-01Made human_num() and human_dnum() able to output negative numbers.Wayne Davison2-19/+45
2008-08-31Got rid of the check_for_io_err code, as it could cause a hang.Wayne Davison5-36/+2
The io_error issue will be fixed in a better way in 3.1.0.
2008-08-24Some minor improvements to the flushing code to try to make itWayne Davison1-40/+48
even more solid.
2008-08-24Make the !flist_eof assumption explicit before the check_for_io_errWayne Davison1-1/+1
code calls wait_for_receiver().
2008-08-17Added /support/savetransfer to .gitignore.Wayne Davison1-0/+1
2008-08-17An improved RERR_PARTIAL message.Wayne Davison2-1/+3
2008-08-14Changed flist_for_ndx() to optionally die with an errorWayne Davison5-46/+45
if the index isn't found.
2008-08-10Made an error of readlink_stat() use the right function name.Wayne Davison1-1/+1
2008-08-08Make sure that the hlink node->data allocation doesn't fail.Wayne Davison1-1/+2
2008-08-05Improved a couple NEWS items.Wayne Davison1-2/+5
2008-08-02Preparing for release of 3.0.4pre2v3.0.4pre2Wayne Davison4-9/+9
2008-08-02Tweaked the symlink iconv buffer size and fixed a comment.Wayne Davison1-4/+4
2008-08-02When using --iconv, if a server-side receiver can't convert a filename,Wayne Davison5-2/+12
it now outputs the name back to the client without mangling the charset.
2008-08-02Refer to the symlink's contents as "symlink data", not "symlink name".Wayne Davison1-4/+4
2008-08-02Added logic to the receiving side to ensure that the --delete-duringWayne Davison5-1/+35
code will not delete in a directory prior to receiving an I/O error for that directory (or not receiving it, as the case may be).
2008-08-02Skip new symlink conversion step if the remote rsync is notWayne Davison3-3/+28
new enough to do symlink content conversions.
2008-08-01The --iconv option now converts the content of a symlink too.Wayne Davison2-19/+97
2008-08-01Fixed a problem with checking for the '.' dir in the first fileWayne Davison2-2/+5
list that is transferred. This fixes a glitch where a failed --iconv conversion on the receiving side could prevent deletions from happening in the root-dir of the transfer.
2008-08-01Fixed a couple minor problems in util.c:Wayne Davison1-3/+7
- Make sure that handle_partial_dir() never returns a truncated fname. - Make robust_rename() return that it failed to do a cross-device copy if the partial-dir could not be created.