summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-07-18Make the hands.test use a higher hlink debug level.Wayne Davison1-4/+4
2008-07-18Add --debug=hlink to hands.test.Wayne Davison1-4/+4
2008-07-17Don't interrupt the make for a generated file didn't really change.Wayne Davison2-6/+27
2008-07-17Use big_num() in a few more places.Wayne Davison3-13/+13
2008-07-17Moving big_num() into lib/compat.c so tls.c can use it.Wayne Davison2-43/+43
2008-07-17Added some HLINK debugging output and enabled it for hardlink tests.Wayne Davison5-11/+37
2008-07-17Changed human_num() to big_num() with an extra arg so that it canWayne Davison12-71/+74
be used in place of all %.0f output idioms.
2008-07-14A couple xattr fixes for --fake-super.Wayne Davison1-3/+6
2008-07-14A few more minor improvements in the --info/--debug code.Wayne Davison1-12/+11
2008-07-14Added a "test_fail" function to 00-hello.test.Wayne Davison1-0/+5
2008-07-14Made the info_verbosity array 1 element larger.Wayne Davison1-1/+1
2008-07-13Added the --info=FLAGS an --debug=FLAGS options, which allowsWayne Davison29-268/+756
fine-grained output control (in addition to the coarse -v).
2008-07-13Fixed the timeout/flush loop-check logic to work properly withWayne Davison1-11/+17
incremental recursion.
2008-07-11If the user specifies --protocol=29, rsync will avoid sending an -eWayne Davison2-12/+21
option to the server (which is only useful for protocols 30 and above anyway). This gives the user an easy way to talk to a restricted server that has overly restrictive option-checking.
2008-07-05Added the --remote-option=OPT (-M OPT) option.Wayne Davison4-10/+99
2008-07-05Got rid of some trailing whitespace.Wayne Davison1-2/+2
2008-07-05The --progress output now leaves the cursor at the end of the lineWayne Davison5-13/+31
(instead of the start) in order to be extra sure that an error won't overwrite it. We also ensure that the progress option can't be enabled on the server side.
2008-07-04Prepare repository for more development.Wayne Davison3-80/+98
2008-07-04Improved the docs for various delete options.Wayne Davison1-7/+14
2008-06-29Preparing for release of 3.0.3v3.0.3Wayne Davison6-12/+12
2008-06-28Mention the addition of the deny-rsync script, and tweak some comments.Wayne Davison2-6/+12
2008-06-26Fixed a problem with a file descriptor being left open in theWayne Davison1-2/+5
generator when handling an empty file.
2008-06-23Some deny-rsync fixes:Wayne Davison1-10/+15
- Fixed messages longer than 63 chars. - Don't require the presence of a "bc" program. - Append a newline to the message to make the script easier to call. - Make extra sure the message outputs without escape interpretation. - Stick around long enough for a client to reliably get the message.
2008-06-23The deny-rsync script from bug 3945.Matt McCutchen1-0/+31
2008-06-23Fixed the sending of large files with older rsync versions byWayne Davison4-4/+12
handling the old block-size limit for protocols < 29.
2008-06-22Preparing for release of 3.0.3pre3v3.0.3pre3Wayne Davison4-9/+9
2008-06-22The sender now sets IOERR_GENERAL in more skipped-file instances.Matt McCutchen1-3/+13
2008-06-22Mention more fixes in the NEWS.Wayne Davison1-4/+30
2008-06-22Improved the build rules for rsync.1 and rsyncd.conf.5 when buildingWayne Davison1-2/+4
in a separate build directory from the source.
2008-06-17Avoid problems with timestamp rounding that cp -p and touch -r may do.Wayne Davison7-15/+39
2008-06-12Fix the problem with setting xattrs on a directory that has anWayne Davison2-0/+9
identical match found in a --link-dest/--copy-dest hierarchy.
2008-06-12Cast the datum_len value to a long for rprintf().Wayne Davison1-2/+2
2008-06-09Handle a solo_file of a directory for --delete-during.Wayne Davison1-1/+4
2008-06-08A couple more xattr improvements:Wayne Davison2-6/+7
- Made the XSTATE_* defines avoid using 0. - Call !XATTR_ABBREV() in recv_xattr_request(). - Improved the "internal abbrev" error message. - Fixed the potential for a directory time glitch in xattrs.diff.
2008-06-08Fixed an "Internal abbrev error" when dealing with an xattr valueWayne Davison3-8/+41
that is unchanged on an early file, and changed on a later file. Added 2 new test cases to ensure this stays fixed.
2008-06-04Improved the progress_is_active code to not overwrite the progressWayne Davison3-8/+10
output in more circumstances.
2008-06-04Improved handling of a system that doesn't have a 64-bit offset type.Wayne Davison3-1/+22
2008-06-04Improved the proto.h target so that a build in a different dir from theWayne Davison1-1/+1
srcdir will ensure that the builddir has a copy of the proto.h file when the Makefile found it to be out of date. This prevents the repeated building of all the targets when the srcdir's proto.h file is accurate, but older than the newest .c file.
2008-05-31Improved the daemon testing, including adding a test to ensure thatWayne Davison2-5/+51
daemon excludes can't exclude a dot dir.
2008-05-31Fixed the destination path check so that it cannot exclude aWayne Davison1-3/+4
dot dir.
2008-05-31Have send_file_list() check is_excluded() (but only on non-dot-dirs)Wayne Davison2-24/+12
and then call send_file_name() with NO_FILTERS. This gets rid of the need for a FLAG_DOTDIR_NAME flag (used only by make_file()).
2008-05-31If an arg is excluded, don't include its implied dirs.Wayne Davison2-2/+7
2008-05-31Make sure the generator doesn't try to send a negative checksum count toWayne Davison2-7/+24
the sender (which would cause it to die with a cryptic error). Instead, warn the user when the file's size is too large for checksum processing.
2008-05-22Fixed the backing up of a device or socket.Wayne Davison1-4/+2
2008-05-22A cuple more fixes for --xattrs combined with --backup, this time toWayne Davison2-3/+8
handle when --link-dest is also used.
2008-05-18Fixed the "src" symlink in each testtmp subdir.Wayne Davison1-1/+4
2008-05-17Fix some path problems when the build dir is not theWayne Davison4-6/+5
source dir.
2008-05-17Preparing for release of 3.0.3pre2v3.0.3pre2Wayne Davison4-9/+9
2008-05-17Fixed an "else" in the device-making part of keep_backup().Wayne Davison1-2/+5
2008-05-17Mention the latest fixes in the NEWS.Wayne Davison1-0/+7