rsync/rsync.git
19 years agoIf there is no lchown(), don't try to set the user & group of a symlink.
Wayne Davison [Mon, 3 Jan 2005 21:05:39 +0000 (21:05 +0000)]
If there is no lchown(), don't try to set the user & group of a symlink.

19 years agoMoved kluged (conditional) define of lchown from rsync.h to syscall.c.
Wayne Davison [Mon, 3 Jan 2005 21:03:33 +0000 (21:03 +0000)]
Moved kluged (conditional) define of lchown from h to syscall.c.

19 years agoBacked out changes to send_deflated_token() that surrounded the
Wayne Davison [Sun, 2 Jan 2005 09:08:59 +0000 (09:08 +0000)]
Backed out changes to send_deflated_token() that surrounded the
call to deflate(..., Z_INSERT_ONLY) -- the underlying bug was
caused by the zlib code not handling Z_INSERT_ONLY in the case
where the server has disabled compression.

19 years agoFixed Z_INSERT_ONLY support in deflate_stored().
Wayne Davison [Sun, 2 Jan 2005 09:03:44 +0000 (09:03 +0000)]
Fixed Z_INSERT_ONLY support in deflate_stored().

19 years agoThe deflate_stored() function needed to support Z_INSERT_ONLY.
Wayne Davison [Sun, 2 Jan 2005 08:49:47 +0000 (08:49 +0000)]
The deflate_stored() function needed to support Z_INSERT_ONLY.

19 years agoIn send_deflated_token(), the section that handles "token != -2"
Wayne Davison [Sun, 2 Jan 2005 00:55:55 +0000 (00:55 +0000)]
In send_deflated_token(), the section that handles "token != -2"
now breaks up the calls to deflate() into CHUNK_SIZE chunks, just
like the other sections of the code.

19 years ago- Use an int32 for the each block-size variable.
Wayne Davison [Sat, 1 Jan 2005 21:08:20 +0000 (21:08 +0000)]
- Use an int32 for the each block-size variable.
- Fixed a problem in send_deflated_token() where the data we are
  compressing might not finish processing in one call.

19 years ago- Use an int32 for the each block-size variable.
Wayne Davison [Sat, 1 Jan 2005 21:08:17 +0000 (21:08 +0000)]
- Use an int32 for the each block-size variable.
- Fixed a potential overflow in the map_size calculation.

19 years agoUse an int32 for the each block-size variable.
Wayne Davison [Sat, 1 Jan 2005 21:08:14 +0000 (21:08 +0000)]
Use an int32 for the each block-size variable.

19 years ago- Use an int32 for the each block-size variable.
Wayne Davison [Sat, 1 Jan 2005 21:08:11 +0000 (21:08 +0000)]
- Use an int32 for the each block-size variable.
- Improved the layout and error-checking of the code that
  calculates the block-size and the number of checksum bits.

19 years ago- Use an int32 for the each block-size variable.
Wayne Davison [Sat, 1 Jan 2005 21:08:07 +0000 (21:08 +0000)]
- Use an int32 for the each block-size variable.
- Renamed the local block_size arg to blk_size (to avoid
  confusion with the global block_size variable).

19 years ago- Use an int32 for each checksum length variable.
Wayne Davison [Sat, 1 Jan 2005 21:08:05 +0000 (21:08 +0000)]
- Use an int32 for each checksum length variable.
- Simplified some of the code, removing a useless memcpy().

19 years agoSince lp_bind_address() can't return NULL, we need to check if it is
Wayne Davison [Fri, 31 Dec 2004 09:41:04 +0000 (09:41 +0000)]
Since lp_bind_address() can't return NULL, we need to check if it is
an empty string and ignore it when it is.

19 years agoA minor improvement to the just-committed code.
Wayne Davison [Fri, 31 Dec 2004 00:41:32 +0000 (00:41 +0000)]
A minor improvement to the just-committed code.

19 years agoThe code that tries to read an error from the socket in an abnormal-
Wayne Davison [Fri, 31 Dec 2004 00:39:59 +0000 (00:39 +0000)]
The code that tries to read an error from the socket in an abnormal-
exit situation was properly forcing the io_timeout value down to 30
seconds, but failing to set the select_timeout value.

19 years agoSet select_timeout if the per-module timeout value was lower than
Wayne Davison [Fri, 31 Dec 2004 00:35:03 +0000 (00:35 +0000)]
Set select_timeout if the per-module timeout value was lower than
the default select_timeout value.

19 years agoIf we send --files-from to the remote server and relative-paths
Wayne Davison [Wed, 22 Dec 2004 09:10:08 +0000 (09:10 +0000)]
If we send --files-from to the remote server and relative-paths
are not enabled, we need to also send --no-relative.

19 years agoMention latest fix.
Wayne Davison [Thu, 16 Dec 2004 22:48:31 +0000 (22:48 +0000)]
Mention latest fix.

19 years agoThe "ignore nonreadable" daemon parameter no longer affects
Wayne Davison [Thu, 16 Dec 2004 22:47:36 +0000 (22:47 +0000)]
The "ignore nonreadable" daemon parameter no longer affects
symlinks that are being copied, even if they point nowhere.

19 years agoGot rid of the rare failure caused by a directory-time mismatch.
Wayne Davison [Tue, 14 Dec 2004 19:41:19 +0000 (19:41 +0000)]
Got rid of the rare failure caused by a directory-time mismatch.

19 years agoDon't call do_lstat() unless SUPPORT_LINKS is defined.
Wayne Davison [Mon, 13 Dec 2004 17:22:32 +0000 (17:22 +0000)]
Don't call do_lstat() unless SUPPORT_LINKS is defined.

19 years agoDocument the client version of the --port option.
Wayne Davison [Wed, 8 Dec 2004 17:30:40 +0000 (17:30 +0000)]
Document the client version of the --port option.

19 years agoAllow --port to be used in client mode (as well as daemon mode).
Wayne Davison [Wed, 8 Dec 2004 17:29:54 +0000 (17:29 +0000)]
Allow --port to be used in client mode (as well as daemon mode).

19 years agoIf rsync_port is 0, set it to RSYNC_PORT.
Wayne Davison [Wed, 8 Dec 2004 17:11:15 +0000 (17:11 +0000)]
If rsync_port is 0, set it to RSYNC_PORT.

19 years agoSwitching to a better rsync_port fix.
Wayne Davison [Wed, 8 Dec 2004 17:09:59 +0000 (17:09 +0000)]
Switching to a better rsync_port fix.

19 years agoDocument the new "address" global option.
Wayne Davison [Mon, 6 Dec 2004 22:45:10 +0000 (22:45 +0000)]
Document the new "address" global option.

19 years agoMade --port and --address point the user at the relevant global
Wayne Davison [Mon, 6 Dec 2004 22:45:07 +0000 (22:45 +0000)]
Made --port and --address point the user at the relevant global
options in the rsyncd.conf manpage.

19 years agoCheck the global option "address" if the user didn't specify
Wayne Davison [Mon, 6 Dec 2004 22:45:03 +0000 (22:45 +0000)]
Check the global option "address" if the user didn't specify
an --address option when starting the daemon.

19 years agoAdded support for the "address" option.
Wayne Davison [Mon, 6 Dec 2004 22:45:00 +0000 (22:45 +0000)]
Added support for the "address" option.

19 years agoSet default port value for a :: file-spec without a port number.
Wayne Davison [Mon, 6 Dec 2004 17:57:06 +0000 (17:57 +0000)]
Set default port value for a :: file-spec without a port number.

19 years agoImproved the examples for the --relative option.
Wayne Davison [Fri, 3 Dec 2004 01:31:24 +0000 (01:31 +0000)]
Improved the examples for the --relative option.

19 years agoCheck the return value of flush_write_file() and report an error
Wayne Davison [Thu, 2 Dec 2004 17:16:19 +0000 (17:16 +0000)]
Check the return value of flush_write_file() and report an error
if it reports failure.

19 years agoImproved the description of the --update option.
Wayne Davison [Tue, 30 Nov 2004 20:43:06 +0000 (20:43 +0000)]
Improved the description of the --update option.

19 years agoImproved some of the descriptions.
Wayne Davison [Tue, 30 Nov 2004 06:07:50 +0000 (06:07 +0000)]
Improved some of the descriptions.

19 years agoRemoved some redundant words in a sentence.
Wayne Davison [Mon, 29 Nov 2004 17:09:31 +0000 (17:09 +0000)]
Removed some redundant words in a sentence.

19 years agoMake some of the --*-dest comments clearer and more complete.
Wayne Davison [Sat, 27 Nov 2004 22:09:33 +0000 (22:09 +0000)]
Make some of the --*-dest comments clearer and more complete.

19 years agoImproved some of the items.
Wayne Davison [Sat, 27 Nov 2004 21:55:05 +0000 (21:55 +0000)]
Improved some of the items.

19 years agoMentioned the latest enhancements.
Wayne Davison [Sat, 27 Nov 2004 18:26:30 +0000 (18:26 +0000)]
Mentioned the latest enhancements.

19 years agoAllow "port" to be specified in the rsyncd.conf file.
Wayne Davison [Sat, 27 Nov 2004 18:24:12 +0000 (18:24 +0000)]
Allow "port" to be specified in the rsyncd.conf file.

19 years agoAdded tests for multiple --compare-dest options and --copy-dest.
Wayne Davison [Sat, 27 Nov 2004 17:59:48 +0000 (17:59 +0000)]
Added tests for multiple --compare-dest options and --copy-dest.

19 years agoAdded support for multiple --*-dest options.
Wayne Davison [Sat, 27 Nov 2004 17:56:58 +0000 (17:56 +0000)]
Added support for multiple --*-dest options.

19 years ago- Added parsing for --copy-dest.
Wayne Davison [Sat, 27 Nov 2004 17:52:51 +0000 (17:52 +0000)]
- Added parsing for --copy-dest.
- Added support for multiple --*-dest options.

19 years agoThe compare_dest variable changed.
Wayne Davison [Sat, 27 Nov 2004 17:52:49 +0000 (17:52 +0000)]
The compare_dest variable changed.

19 years ago- Added support for --copy-dest, which behaves like --link-dest,
Wayne Davison [Sat, 27 Nov 2004 17:52:47 +0000 (17:52 +0000)]
- Added support for --copy-dest, which behaves like --link-dest,
  but it copies the identical files instead of hard-linking them.
- Added support for multiple --*-dest options.

19 years ago- Define MAX_BASIS_DIRS.
Wayne Davison [Sat, 27 Nov 2004 17:52:45 +0000 (17:52 +0000)]
- Define MAX_BASIS_DIRS.
- Renamed FNAMECMP_CMPDEST to FNAMECMP_BASIS_DIR.

19 years agoDocument --copy-dest and the support for multiple --*-dest options.
Wayne Davison [Sat, 27 Nov 2004 17:52:42 +0000 (17:52 +0000)]
Document --copy-dest and the support for multiple --*-dest options.

19 years agoFixed a socket-data conflict when verbosity is >= 2 and the
Wayne Davison [Sat, 20 Nov 2004 17:10:54 +0000 (17:10 +0000)]
Fixed a socket-data conflict when verbosity is >= 2 and the
files-from list is coming from a remote receiver.

19 years agoMention latest fix.
Wayne Davison [Sat, 20 Nov 2004 07:23:20 +0000 (07:23 +0000)]
Mention latest fix.

19 years agoCall set_msg_fd_in() during the early phase of being a client sender
Wayne Davison [Sat, 20 Nov 2004 07:08:44 +0000 (07:08 +0000)]
Call set_msg_fd_in() during the early phase of being a client sender
so that we monitor the socket for any messages that it might send to
us (and thus avoid a potential hang when verbosity is high).

19 years agoSome minor improvements to read_msg_fd() made it safe to use both
Wayne Davison [Sat, 20 Nov 2004 07:07:37 +0000 (07:07 +0000)]
Some minor improvements to read_msg_fd() made it safe to use both
set_msg_fd_in() and read_msg_fd() during the early phase of being
a client sender (up through the sending of the file list).  This
makes sure that the sender monitors the socket from the receiver
for any messages that it might send to us, and thus avoids a hang
when verbosity is high.

19 years agoMention that the --bwlimit may now be combined with --daemon.
Wayne Davison [Wed, 17 Nov 2004 19:41:09 +0000 (19:41 +0000)]
Mention that the --bwlimit may now be combined with --daemon.

19 years ago- Mention the latest enhancements.
Wayne Davison [Wed, 17 Nov 2004 19:35:11 +0000 (19:35 +0000)]
- Mention the latest enhancements.
- Aged the 2.6.3 news into OLDNEWS.

19 years agoAged the 2.6.3 release news.
Wayne Davison [Wed, 17 Nov 2004 19:34:31 +0000 (19:34 +0000)]
Aged the 2.6.3 release news.

19 years ago- Added the --bwlimit option to the options that are handled in
Wayne Davison [Wed, 17 Nov 2004 19:29:20 +0000 (19:29 +0000)]
- Added the --bwlimit option to the options that are handled in
  combination with --daemon.  This value is both a default bwlimit
  value and a maximum limit if the client asks for something larger.
- Enabled popt support for option aliases.

19 years agoSeparate the daemon options from the normal client options.
Wayne Davison [Wed, 17 Nov 2004 19:11:53 +0000 (19:11 +0000)]
Separate the daemon options from the normal client options.

19 years agoTweaked the error code for a pipe() failure.
Wayne Davison [Sat, 13 Nov 2004 22:32:34 +0000 (22:32 +0000)]
Tweaked the error code for a pipe() failure.

19 years agoMentioned the new fork() check.
Wayne Davison [Sat, 13 Nov 2004 21:50:56 +0000 (21:50 +0000)]
Mentioned the new fork() check.

19 years agoDie with an appropriate error if do_fork() fails.
Wayne Davison [Sat, 13 Nov 2004 21:49:26 +0000 (21:49 +0000)]
Die with an appropriate error if do_fork() fails.

19 years agoMention the new --max-size option.
Wayne Davison [Thu, 11 Nov 2004 01:45:31 +0000 (01:45 +0000)]
Mention the new --max-size option.

19 years agoObey the max_size setting.
Wayne Davison [Thu, 11 Nov 2004 01:45:28 +0000 (01:45 +0000)]
Obey the max_size setting.

19 years agoAdded the --max-size option.
Wayne Davison [Thu, 11 Nov 2004 01:45:25 +0000 (01:45 +0000)]
Added the --max-size option.

19 years agoDocument --max-size.
Wayne Davison [Thu, 11 Nov 2004 01:45:22 +0000 (01:45 +0000)]
Document --max-size.

19 years agoChecking in the g2r-basis-filename patch that ensures that the receiver
Wayne Davison [Wed, 3 Nov 2004 20:30:31 +0000 (20:30 +0000)]
Checking in the g2r-basis-filename patch that ensures that the receiver
uses the same basis file that the generator used (avoiding a duplicate
check that could cause a hang if a compare-dest file was a named pipe).

19 years agoAlways include lib/snprintf.o when we include lib/compat.o.
Wayne Davison [Tue, 2 Nov 2004 16:47:15 +0000 (16:47 +0000)]
Always include lib/snprintf.o when we include lib/compat.o.

19 years agoMention latest fix.
Wayne Davison [Wed, 27 Oct 2004 06:35:50 +0000 (06:35 +0000)]
Mention latest fix.

19 years agoDon't ever call make_backup() if we're removing a destination directory
Wayne Davison [Wed, 27 Oct 2004 06:34:13 +0000 (06:34 +0000)]
Don't ever call make_backup() if we're removing a destination directory
(just remove it).

19 years agoMention the latest bug-fix.
Wayne Davison [Mon, 18 Oct 2004 20:44:09 +0000 (20:44 +0000)]
Mention the latest bug-fix.

19 years agoFixed an off-by-one error in the handling of --max-delete=N.
Wayne Davison [Mon, 18 Oct 2004 20:41:57 +0000 (20:41 +0000)]
Fixed an off-by-one error in the handling of --max-delete=N.

19 years agoMention new option parsing.
Wayne Davison [Thu, 14 Oct 2004 17:11:28 +0000 (17:11 +0000)]
Mention new option parsing.

19 years agoSeparate the daemon options so that the user can't mix client options
Wayne Davison [Thu, 14 Oct 2004 17:08:15 +0000 (17:08 +0000)]
Separate the daemon options so that the user can't mix client options
with daemon options and visa versa.

19 years agoIt seems that some popt releases don't define POPT_TABLEEND, so don't
Wayne Davison [Thu, 14 Oct 2004 09:11:12 +0000 (09:11 +0000)]
It seems that some popt releases don't define POPT_TABLEEND, so don't
use it.

19 years agoDecided we don't need the build_gen target after all.
Wayne Davison [Tue, 12 Oct 2004 20:08:51 +0000 (20:08 +0000)]
Decided we don't need the build_gen target after all.

19 years ago- Got rid of some awkward spacing in the long_options table.
Wayne Davison [Mon, 11 Oct 2004 10:43:25 +0000 (10:43 +0000)]
- Got rid of some awkward spacing in the long_options table.
- Use the POPT_TABLEEND macro to end the long_options table.
- Improved the count_args() function to accept a NULL pointer.
- Simplified the code that sets *argc using count_args().

19 years agoMention the latest changes.
Wayne Davison [Sun, 10 Oct 2004 20:33:07 +0000 (20:33 +0000)]
Mention the latest changes.

19 years agoCall flush_write_file() in _exit_cleanup() if we are keeping a
Wayne Davison [Sun, 10 Oct 2004 20:31:54 +0000 (20:31 +0000)]
Call flush_write_file() in _exit_cleanup() if we are keeping a
partially-received file.

19 years agoHandle systems where the makedev() macro is named mkdev().
Wayne Davison [Fri, 8 Oct 2004 21:27:22 +0000 (21:27 +0000)]
Handle systems where the makedev() macro is named mkdev().

19 years agoA new target, build_gen, works like gen w/o man-page generation.
Wayne Davison [Fri, 8 Oct 2004 19:52:38 +0000 (19:52 +0000)]
A new target, build_gen, works like gen w/o man-page generation.

19 years agoImproved an error message by using rsyserr().
Wayne Davison [Thu, 7 Oct 2004 17:02:39 +0000 (17:02 +0000)]
Improved an error message by using rsyserr().

19 years agoMention in -a's usage message that -H isn't implied.
Wayne Davison [Thu, 7 Oct 2004 17:00:36 +0000 (17:00 +0000)]
Mention in -a's usage message that -H isn't implied.

19 years agoRe-enable the "!" token-handling in a .cvsignore file.
Wayne Davison [Wed, 6 Oct 2004 00:10:08 +0000 (00:10 +0000)]
Re-enable the "!" token-handling in a .cvsignore file.

19 years agoThe device-handling code is no longer omitted based on HAVE_MKNOD
Wayne Davison [Fri, 1 Oct 2004 06:58:23 +0000 (06:58 +0000)]
The device-handling code is no longer omitted based on HAVE_MKNOD
(this is because do_mknod() might be using a different function
to handle fifos and sockets without the help of mknod().

19 years agoImproved do_mknod() so that it handles creating a fifo file
Wayne Davison [Fri, 1 Oct 2004 06:56:14 +0000 (06:56 +0000)]
Improved do_mknod() so that it handles creating a fifo file
and a socket file when mknod() itself does not.

19 years agoMake sure that all programs that use syscall.o also include
Wayne Davison [Fri, 1 Oct 2004 06:53:26 +0000 (06:53 +0000)]
Make sure that all programs that use syscall.o also include
lib/compat.o so that we can use strlcpy().

19 years ago- Check if struct sockaddr_un has a sun_len member.
Wayne Davison [Fri, 1 Oct 2004 06:51:34 +0000 (06:51 +0000)]
- Check if struct sockaddr_un has a sun_len member.
- Check if mknod() can make a fifo file.
- Check if mknod() can make a socket file.

19 years agoSome systems need do_mkstemp() to use setmode() to set O_BINARY.
Wayne Davison [Fri, 1 Oct 2004 02:34:22 +0000 (02:34 +0000)]
Some systems need do_mkstemp() to use setmode() to set O_BINARY.

19 years agoCheck for the setmode() function.
Wayne Davison [Fri, 1 Oct 2004 02:31:10 +0000 (02:31 +0000)]
Check for the setmode() function.

19 years agoPreparing for release of 2.6.3
Wayne Davison [Thu, 30 Sep 2004 16:36:42 +0000 (16:36 +0000)]
Preparing for release of 2.6.3

19 years agoMention the enhancement that was made (quite a while ago) to the
Wayne Davison [Thu, 30 Sep 2004 10:46:43 +0000 (10:46 +0000)]
Mention the enhancement that was made (quite a while ago) to the
daemon's wildcard-expansion limit (formerly 1000 items, now memory
limited).

19 years agoRefined the text of a few of the news items.
Wayne Davison [Thu, 30 Sep 2004 09:58:39 +0000 (09:58 +0000)]
Refined the text of a few of the news items.

19 years ago- Mention the fix for lost output with 2>&1.
Wayne Davison [Thu, 30 Sep 2004 09:37:38 +0000 (09:37 +0000)]
- Mention the fix for lost output with 2>&1.
- Prepare the file for the 2.6.3 final release.

19 years agoMention the (anticipated) 2.6.3 release date.
Wayne Davison [Thu, 30 Sep 2004 09:36:29 +0000 (09:36 +0000)]
Mention the (anticipated) 2.6.3 release date.

19 years agoSet our stderr output to blocking I/O to avoid any loss of output.
Wayne Davison [Wed, 29 Sep 2004 17:58:07 +0000 (17:58 +0000)]
Set our stderr output to blocking I/O to avoid any loss of output.

19 years agoChanged the errors concerning the secrets file to output with FLOG
Wayne Davison [Fri, 24 Sep 2004 17:04:05 +0000 (17:04 +0000)]
Changed the errors concerning the secrets file to output with FLOG
instead of FERROR.

19 years ago- Make sure that match_address() always restores the "tok" string,
Wayne Davison [Fri, 24 Sep 2004 16:50:07 +0000 (16:50 +0000)]
- Make sure that match_address() always restores the "tok" string,
  even on error.
- Turned the various FERROR messages into (the more proper) FLOG.

19 years agoTurned the various FERROR messages into (the more proper) FLOG.
Wayne Davison [Fri, 24 Sep 2004 16:39:41 +0000 (16:39 +0000)]
Turned the various FERROR messages into (the more proper) FLOG.

19 years agoAdded some more --inplace info (i.e. it implies --partial and conflicts
Wayne Davison [Thu, 23 Sep 2004 21:15:04 +0000 (21:15 +0000)]
Added some more --inplace info (i.e. it implies --partial and conflicts
with 3 basis-file-affecting options).

19 years agoMade the refused-option message clearer, like Paul suggested.
Wayne Davison [Thu, 23 Sep 2004 17:39:05 +0000 (17:39 +0000)]
Made the refused-option message clearer, like Paul suggested.

19 years agoCreate a FIFO using mkfifo.
Wayne Davison [Thu, 23 Sep 2004 16:34:43 +0000 (16:34 +0000)]
Create a FIFO using mkfifo.

19 years agoAssume that gettimeofday() takes two arguments when cross-compiling.
Wayne Davison [Thu, 23 Sep 2004 16:00:44 +0000 (16:00 +0000)]
Assume that gettimeofday() takes two arguments when cross-compiling.

19 years agoOnly output major/minor info for a character/block device, not for
Wayne Davison [Thu, 23 Sep 2004 05:33:48 +0000 (05:33 +0000)]
Only output major/minor info for a character/block device, not for
a FIFO or a socket.