rsync/rsync.git
19 years ago- Changed hlink_list[] to store file-list indexes instead of
Wayne Davison [Sat, 5 Mar 2005 00:21:44 +0000 (00:21 +0000)]
- Changed hlink_list[] to store file-list indexes instead of
  pointers.
- Made hard_link_one() non-static so that the generator can call it.
  Improved it to do itemized output.
- Replaced do_hard_links() with hard_link_cluster(), which changes
  the hard-linking from a post-transfer loop into a per-cluster
  operation that occurs incrementally as the transfer updates (or
  finds unchanged) one item in the cluster.

19 years ago- Updated itemize() to handle sending of hard-link-name info. Made
Wayne Davison [Sat, 5 Mar 2005 00:21:42 +0000 (00:21 +0000)]
- Updated itemize() to handle sending of hard-link-name info.  Made
  it non-static so the hard-link code can now output itemized
  messages.
- Made the locally-changed items (such as dirs and symlinks) itemize
  using a new ITEM_LOCAL_CHANGE flag instead of the (renamed)
  ITEM_TRANSFER flag (formerly ITEM_UPDATING).
- Improved the hard-link support by having a cluster of hard-linked
  files get processed as soon as we notice that a single item is
  already up-to-date, or it succssfully finishes being updated.
- The hard-linking that occurs when using --link-dest will now be
  mentioned at higher levels of verbosity IFF %i is in the log-
  format.

19 years ago- Changed ITEM_UPDATING to ITEM_TRANSFER.
Wayne Davison [Sat, 5 Mar 2005 00:21:39 +0000 (00:21 +0000)]
- Changed ITEM_UPDATING to ITEM_TRANSFER.
- Added defines ITEM_HARD_LINKED, ITEM_LOCAL_CHANGE,
  ITEM_REPORT_XATTRS, and SIGNIFICANT_ITEM_FLAGS.
- Changed the "next" var in struct hlink into an int.

19 years agoMention latest bug fixes.
Wayne Davison [Sat, 5 Mar 2005 00:20:37 +0000 (00:20 +0000)]
Mention latest bug fixes.

19 years agoIn read_iflags(), we need to set buf to an empty string.
Wayne Davison [Fri, 4 Mar 2005 18:01:16 +0000 (18:01 +0000)]
In read_iflags(), we need to set buf to an empty string.

19 years agoGot rid of some code in the main recv_files() loop by calling the
Wayne Davison [Fri, 4 Mar 2005 16:54:08 +0000 (16:54 +0000)]
Got rid of some code in the main recv_files() loop by calling the
new functions read_iflags() and maybe_log_item().

19 years agoMoved some code out of the main loop in send_files() into a new
Wayne Davison [Fri, 4 Mar 2005 16:53:26 +0000 (16:53 +0000)]
Moved some code out of the main loop in send_files() into a new
function called read_iflags() (which was made generic enough that
the receiver could use it too).  Also call the new maybe_log_item().

19 years agoAdded maybe_log_item() for use by the sender and receiver.
Wayne Davison [Fri, 4 Mar 2005 16:52:00 +0000 (16:52 +0000)]
Added maybe_log_item() for use by the sender and receiver.

19 years agoDocument the new value of %L.
Wayne Davison [Fri, 4 Mar 2005 16:11:09 +0000 (16:11 +0000)]
Document the new value of %L.

19 years agoDocument latest format of %i.
Wayne Davison [Fri, 4 Mar 2005 16:08:58 +0000 (16:08 +0000)]
Document latest format of %i.

19 years agoCall log_item() instead of log_recv().
Wayne Davison [Fri, 4 Mar 2005 16:08:16 +0000 (16:08 +0000)]
Call log_item() instead of log_recv().

19 years agoCall log_item() instead of log_send().
Wayne Davison [Fri, 4 Mar 2005 16:08:02 +0000 (16:08 +0000)]
Call log_item() instead of log_send().

19 years ago- Replaced log_send() and log_recv() with log_item().
Wayne Davison [Fri, 4 Mar 2005 16:07:50 +0000 (16:07 +0000)]
- Replaced log_send() and log_recv() with log_item().
- Made log_formatted() and log_item() take an "hlink" arg that
  will be used to pass in a hard-link name for use in %L.

19 years agoUse the new "the_file_list" global instead of our "the_flist" local.
Wayne Davison [Fri, 4 Mar 2005 15:57:14 +0000 (15:57 +0000)]
Use the new "the_file_list" global instead of our "the_flist" local.

19 years agoTransformed the push/pop functions for the redo-list into more
Wayne Davison [Fri, 4 Mar 2005 15:50:22 +0000 (15:50 +0000)]
Transformed the push/pop functions for the redo-list into more
generic flist_num_{push,pop}() functions that can support other
folks caching off file-list index numbers.

19 years agoAdded read_vstring() and write_vstring() to io.c instead of
Wayne Davison [Fri, 4 Mar 2005 15:38:58 +0000 (15:38 +0000)]
Added read_vstring() and write_vstring() to io.c instead of
having this code in generator.c and receiver.c.

19 years ago- Got rid of the checking of msg_fd_in in read_timeout() -- it was
Wayne Davison [Fri, 4 Mar 2005 08:58:27 +0000 (08:58 +0000)]
- Got rid of the checking of msg_fd_in in read_timeout() -- it was
  only needed back when the generator was reading a separate redo
  pipe from the message pipe.
- Fixed a potential data corruption in the data that the generator
  is sending:  if a message comes in from the receiver, we now make
  sure that we can't put the forwarding of this message to the sender
  into the middle of a multiplexed-write record that the generator
  is trying to flush.

19 years agoUse the new "the_file_list" global.
Wayne Davison [Thu, 3 Mar 2005 18:44:42 +0000 (18:44 +0000)]
Use the new "the_file_list" global.

19 years ago- Set the new global "the_file_list".
Wayne Davison [Thu, 3 Mar 2005 18:44:06 +0000 (18:44 +0000)]
- Set the new global "the_file_list".
- Got rid of test of read_batch in an am_sender section since
  there is never a sender process for --read-batch.

19 years agoSimplified whole_file variable checking.
Wayne Davison [Thu, 3 Mar 2005 02:58:48 +0000 (02:58 +0000)]
Simplified whole_file variable checking.

19 years agoImproved some text in --compare-dest and --link-dest.
Wayne Davison [Thu, 3 Mar 2005 02:23:12 +0000 (02:23 +0000)]
Improved some text in --compare-dest and --link-dest.

19 years agoDon't kluge the value of statret for --whole-file.
Wayne Davison [Thu, 3 Mar 2005 01:50:43 +0000 (01:50 +0000)]
Don't kluge the value of statret for --whole-file.

19 years agoMoved the checks for --ignore-existing and --update higher in
Wayne Davison [Thu, 3 Mar 2005 01:33:51 +0000 (01:33 +0000)]
Moved the checks for --ignore-existing and --update higher in
recv_generator() so that they don't trigger erroneously when
--link-dest is specified.

19 years ago- Got rid of the SID_* flags -- use the ITEM_* flags directly.
Wayne Davison [Thu, 3 Mar 2005 00:14:35 +0000 (00:14 +0000)]
- Got rid of the SID_* flags -- use the ITEM_* flags directly.
- If --compare-dest find a file that is not the same in attributes,
  we need to copy the file.

19 years agoAdded ITEM_NO_DEST_AND_NO_UPDATE for use by the generator's
Wayne Davison [Thu, 3 Mar 2005 00:14:32 +0000 (00:14 +0000)]
Added ITEM_NO_DEST_AND_NO_UPDATE for use by the generator's
itemize() function.

19 years agoFixed the --compare-dest docs.
Wayne Davison [Wed, 2 Mar 2005 18:01:23 +0000 (18:01 +0000)]
Fixed the --compare-dest docs.

19 years agoWhen using multiple --compare-dest options, rsync should avoid
Wayne Davison [Wed, 2 Mar 2005 17:48:36 +0000 (17:48 +0000)]
When using multiple --compare-dest options, rsync should avoid
copying a file that has an exact match in any of the dirs.

19 years agoFixed a bug in the --dry-run output when using --link-dest.
Wayne Davison [Wed, 2 Mar 2005 17:27:19 +0000 (17:27 +0000)]
Fixed a bug in the --dry-run output when using --link-dest.

19 years agoIf the multi-dest loop falls back to the best_match index,
Wayne Davison [Wed, 2 Mar 2005 09:51:54 +0000 (09:51 +0000)]
If the multi-dest loop falls back to the best_match index,
we need to re-stat() the file to restore "st".

19 years agoTweaked the description for --rsync-path.
Wayne Davison [Wed, 2 Mar 2005 09:17:42 +0000 (09:17 +0000)]
Tweaked the description for --rsync-path.

19 years agoA little more tweaking to the multi-dest option loop.
Wayne Davison [Wed, 2 Mar 2005 09:09:15 +0000 (09:09 +0000)]
A little more tweaking to the multi-dest option loop.

19 years agoMention that specifying "/dir/**" is a safer way than "/dir/"
Wayne Davison [Wed, 2 Mar 2005 01:48:25 +0000 (01:48 +0000)]
Mention that specifying "/dir/**" is a safer way than "/dir/"
alone to ensure that files inside a dir are fully protected.

19 years agoImproved the description of --rsync-path.
Wayne Davison [Tue, 1 Mar 2005 23:02:23 +0000 (23:02 +0000)]
Improved the description of --rsync-path.

19 years agoMade the multi-FOO-dest loop a little nicer.
Wayne Davison [Tue, 1 Mar 2005 19:42:31 +0000 (19:42 +0000)]
Made the multi-FOO-dest loop a little nicer.

19 years agoExplicitly mention that "del." does include the trailing period.
Wayne Davison [Tue, 1 Mar 2005 19:17:27 +0000 (19:17 +0000)]
Explicitly mention that "del." does include the trailing period.

19 years agoFixed two glitches Paul pointed out.
Wayne Davison [Tue, 1 Mar 2005 17:28:46 +0000 (17:28 +0000)]
Fixed two glitches Paul pointed out.

19 years agoPreparing for release of 2.6.4pre2
Wayne Davison [Tue, 1 Mar 2005 06:22:19 +0000 (06:22 +0000)]
Preparing for release of 2.6.4pre2

19 years agoMention the latest changes.
Wayne Davison [Tue, 1 Mar 2005 06:05:23 +0000 (06:05 +0000)]
Mention the latest changes.

19 years agoA few improvements to the new check_for_hostspec() function.
Wayne Davison [Tue, 1 Mar 2005 05:49:11 +0000 (05:49 +0000)]
A few improvements to the new check_for_hostspec() function.

19 years agoMade the argv/argc parsing a little nicer.
Wayne Davison [Tue, 1 Mar 2005 03:39:35 +0000 (03:39 +0000)]
Made the argv/argc parsing a little nicer.

19 years ago- Look for last '@' in a user@host spec.
Wayne Davison [Tue, 1 Mar 2005 03:39:32 +0000 (03:39 +0000)]
- Look for last '@' in a user@host spec.

19 years agoRemoved section on parsing IPv6 literal addresses.
Wayne Davison [Tue, 1 Mar 2005 03:11:28 +0000 (03:11 +0000)]
Removed section on parsing IPv6 literal addresses.

19 years agoChanged remote_filesfrom_file to filesfrom_host.
Wayne Davison [Tue, 1 Mar 2005 03:10:59 +0000 (03:10 +0000)]
Changed remote_filesfrom_file to filesfrom_host.

19 years ago- Changes needed to handle new filesfrom_host variable.
Wayne Davison [Tue, 1 Mar 2005 01:16:03 +0000 (01:16 +0000)]
- Changes needed to handle new filesfrom_host variable.
- Changes needed to use check_for_hostspec() in place of find_colon().

19 years agoChanges needed to use check_for_hostspec() in place of find_colon().
Wayne Davison [Tue, 1 Mar 2005 01:15:59 +0000 (01:15 +0000)]
Changes needed to use check_for_hostspec() in place of find_colon().

19 years ago- Changed find_colon() into check_for_hostspec(), extending it to
Wayne Davison [Tue, 1 Mar 2005 01:15:57 +0000 (01:15 +0000)]
- Changed find_colon() into check_for_hostspec(), extending it to
  understand the rsync:://HOST:PORT/PATH format, allowing all HOSTs
  to be IPv6 literal addresses enclosed in '[' and ']', and changing
  it to return the 3 parts of the spec separately (host, port, and
  path).
- Relocated the code that handles the sanitation and validation of
  the files_from arg in order to make its placement a little more
  logical.
- Replaced remote_filesfrom_file with filesfrom_host, which makes
  the value of the files_from variable more intuitive.

19 years agoEnhanced the option-parsing failure mode to handle the situation
Wayne Davison [Tue, 1 Mar 2005 00:42:32 +0000 (00:42 +0000)]
Enhanced the option-parsing failure mode to handle the situation
where the parser didn't get a chance to parse the --files-from
option yet, but we still need to know it was there in order to get
the error message back to the client.

19 years agoMade a couple sentences about rsync:// syntax clearer.
Wayne Davison [Mon, 28 Feb 2005 22:04:16 +0000 (22:04 +0000)]
Made a couple sentences about  syntax clearer.

19 years agoImproved a couple sentences.
Wayne Davison [Mon, 28 Feb 2005 02:16:49 +0000 (02:16 +0000)]
Improved a couple sentences.

19 years agoSay "rsync 2.6.4" instead of "protocol 29".
Wayne Davison [Mon, 28 Feb 2005 02:16:23 +0000 (02:16 +0000)]
Say "rsync 2.6.4" instead of "protocol 29".

19 years agoTweaked a comment.
Wayne Davison [Mon, 28 Feb 2005 02:04:42 +0000 (02:04 +0000)]
Tweaked a comment.

19 years agoImproved do_lseek()'s failure message.
Wayne Davison [Sun, 27 Feb 2005 21:12:13 +0000 (21:12 +0000)]
Improved do_lseek()'s failure message.

19 years agoComplain if the run-terminating keep-alive packets aren't what
Wayne Davison [Sun, 27 Feb 2005 20:50:07 +0000 (20:50 +0000)]
Complain if the run-terminating keep-alive packets aren't what
we expected.

19 years agoDon't loop forever when the receiver is waiting around to be killed
Wayne Davison [Sun, 27 Feb 2005 18:24:34 +0000 (18:24 +0000)]
Don't loop forever when the receiver is waiting around to be killed
at EOF -- it should be a rapidly arriving event, so only hang around
for 10 seconds, max., and then go ahead and report the "unexpectedly
closed" error.

19 years agoMake sure that allowed_lull will not be computed as 0 if
Wayne Davison [Sun, 27 Feb 2005 18:09:17 +0000 (18:09 +0000)]
Make sure that allowed_lull will not be computed as 0 if
io_timeout is 1.

19 years agoImproved a couple sentences.
Wayne Davison [Sun, 27 Feb 2005 18:01:32 +0000 (18:01 +0000)]
Improved a couple sentences.

19 years ago- Made the calls to maybe_send_keepalive() happen at better intervals.
Wayne Davison [Sun, 27 Feb 2005 09:02:32 +0000 (09:02 +0000)]
- Made the calls to maybe_send_keepalive() happen at better intervals.
- Call do_hard_links() with its new args.

19 years agoAdded 2 args to do_hard_links() so that it can call maybe_send_keepalive().
Wayne Davison [Sun, 27 Feb 2005 09:02:29 +0000 (09:02 +0000)]
Added 2 args to do_hard_links() so that it can call maybe_send_keepalive().

19 years agoMention the backup fix for redone files with --inplace.
Wayne Davison [Sun, 27 Feb 2005 08:02:06 +0000 (08:02 +0000)]
Mention the backup fix for redone files with --inplace.

19 years agoWe need to turn off make_backups for the redo phase so that
Wayne Davison [Sun, 27 Feb 2005 07:50:43 +0000 (07:50 +0000)]
We need to turn off make_backups for the redo phase so that
the inplace processing doesn't make a second backup.

19 years agoTweaked an error message.
Wayne Davison [Sun, 27 Feb 2005 07:34:27 +0000 (07:34 +0000)]
Tweaked an error message.

19 years ago- Seems to me that sigusr2_handler() should call close_all() for
Wayne Davison [Sun, 27 Feb 2005 07:33:01 +0000 (07:33 +0000)]
- Seems to me that sigusr2_handler() should call close_all() for
  the sake of MS Windows.
- Improved some comments.

19 years agoOne more comment fix.
Wayne Davison [Sat, 26 Feb 2005 22:14:40 +0000 (22:14 +0000)]
One more comment fix.

19 years agoFixed comment.
Wayne Davison [Sat, 26 Feb 2005 22:02:38 +0000 (22:02 +0000)]
Fixed comment.

19 years agoImproved a couple sentences.
Wayne Davison [Sat, 26 Feb 2005 21:48:12 +0000 (21:48 +0000)]
Improved a couple sentences.

19 years agoSet kluge_around_eof to a -1 for the receiver's needs.
Wayne Davison [Sat, 26 Feb 2005 20:58:08 +0000 (20:58 +0000)]
Set kluge_around_eof to a -1 for the receiver's needs.

19 years agoIf kluge_around_eof is < 0, we go into an msleep() loop instead
Wayne Davison [Sat, 26 Feb 2005 20:58:05 +0000 (20:58 +0000)]
If kluge_around_eof is < 0, we go into an msleep() loop instead
of exiting.

19 years agoExplicitly set kluge_around_eof to a 1 when it is needed.
Wayne Davison [Sat, 26 Feb 2005 20:58:01 +0000 (20:58 +0000)]
Explicitly set kluge_around_eof to a 1 when it is needed.

19 years agoAdded keep-alive checking during the directory-touching loop at
Wayne Davison [Sat, 26 Feb 2005 20:43:14 +0000 (20:43 +0000)]
Added keep-alive checking during the directory-touching loop at
the end of the processing.

19 years agoSet kludge_around_eof when the receiver is trying to read a
Wayne Davison [Sat, 26 Feb 2005 20:21:12 +0000 (20:21 +0000)]
Set kludge_around_eof when the receiver is trying to read a
potential keep-alive message that may never come.

19 years agoImproved the comment for kludge_around_eof.
Wayne Davison [Sat, 26 Feb 2005 20:21:08 +0000 (20:21 +0000)]
Improved the comment for kludge_around_eof.

19 years agoAdded "set -x".
Wayne Davison [Sat, 26 Feb 2005 19:49:59 +0000 (19:49 +0000)]
Added "set -x".

19 years agoDecided I like "set -x" after all.
Wayne Davison [Sat, 26 Feb 2005 19:47:43 +0000 (19:47 +0000)]
Decided I like "set -x" after all.

19 years agoDon't allow keep-alive sending if --read-batch is enabled.
Wayne Davison [Sat, 26 Feb 2005 19:37:49 +0000 (19:37 +0000)]
Don't allow keep-alive sending if --read-batch is enabled.

19 years agoMention the new keep-alive handling and the devices-size fix.
Wayne Davison [Sat, 26 Feb 2005 19:17:06 +0000 (19:17 +0000)]
Mention the new keep-alive handling and the devices-size fix.

19 years agoFixed a line-ordering problem.
Wayne Davison [Sat, 26 Feb 2005 19:11:57 +0000 (19:11 +0000)]
Fixed a line-ordering problem.

19 years agoHandle keep-alive messages at the end of the transfer when
Wayne Davison [Sat, 26 Feb 2005 18:57:57 +0000 (18:57 +0000)]
Handle keep-alive messages at the end of the transfer when
--delete-after is happening.

19 years ago- Moved all the file-deletion code here from flist.c and receiver.c.
Wayne Davison [Sat, 26 Feb 2005 18:03:49 +0000 (18:03 +0000)]
- Moved all the file-deletion code here from flist.c and receiver.c.
- Call maybe_send_keepalive() from delete_in_dir() so that a really
  long delete-pass won't timeout.
- Renamed delete_files() -> do_delete_pass().
- Renamed delete_file() -> delete_item().
- Call get_dirlist() with its new arg.

19 years ago- Moved file-deletion code into generator.c.
Wayne Davison [Sat, 26 Feb 2005 18:03:46 +0000 (18:03 +0000)]
- Moved file-deletion code into generator.c.
- Made filesystem_dev a global that the generator can set during its
  delete pass.
- Fixed an off-by-one boundary check in send_directory().
- Added an arg to get_dirlist() so that delete_in_dir() can call it
  efficiently.

19 years agoMoved the delete-after support into generator.c.
Wayne Davison [Sat, 26 Feb 2005 18:03:42 +0000 (18:03 +0000)]
Moved the delete-after support into generator.c.

19 years agoMoved the delete-before support into generator.c.
Wayne Davison [Sat, 26 Feb 2005 18:03:40 +0000 (18:03 +0000)]
Moved the delete-before support into generator.c.

19 years ago- Moved the initialization of "itemizing", "maybe_PERMS_REPORT", and
Wayne Davison [Sat, 26 Feb 2005 06:52:55 +0000 (06:52 +0000)]
- Moved the initialization of "itemizing", "maybe_PERMS_REPORT", and
  "code" from recv_generator() to generate_files() so that they
  don't get recomputed for every file (we pass them as args now).
- Allow protocols < 29 to call maybe_send_keepalive() so that we can
  try to flush the output buffer if things are slow (though we can't
  send a keep-alive packet without protocol_version >= 29).

19 years agoCalling maybe_send_keepalive() for protocol_version < 29 is
Wayne Davison [Sat, 26 Feb 2005 06:43:15 +0000 (06:43 +0000)]
Calling maybe_send_keepalive() for protocol_version < 29 is
now supported, though we can only try to flush the output
buffer if we're in a lull.

19 years ago- Moved the description of '%i's output into the rsync manpage.
Wayne Davison [Sat, 26 Feb 2005 05:18:03 +0000 (05:18 +0000)]
- Moved the description of '%i's output into the rsync manpage.
- A few minor tweaks to the "log format" setting.

19 years ago- We now mention what "%i" outputs under --itemize-changes.
Wayne Davison [Sat, 26 Feb 2005 05:16:26 +0000 (05:16 +0000)]
- We now mention what "%i" outputs under --itemize-changes.
- Improved the description of --log-format.

19 years agoMention the change in when --log-format outputs and how it
Wayne Davison [Sat, 26 Feb 2005 05:11:46 +0000 (05:11 +0000)]
Mention the change in when --log-format outputs and how it
interacts with --verbose.

19 years agoCall log_delete() from delete_file() anytime that DEL_TERSE is
Wayne Davison [Sat, 26 Feb 2005 04:50:55 +0000 (04:50 +0000)]
Call log_delete() from delete_file() anytime that DEL_TERSE is
not set (we used to only call if verbose or log_format were also
set).

19 years agoThe log_delete() function may now be called even when the client is
Wayne Davison [Sat, 26 Feb 2005 04:49:30 +0000 (04:49 +0000)]
The log_delete() function may now be called even when the client is
not getting delete messages, which ensures that the daemon's log-
file output includes all deletions when per-file logging is enabled.

19 years agoMake sure that our protocol-28 compatibility is OK.
Wayne Davison [Sat, 26 Feb 2005 03:22:05 +0000 (03:22 +0000)]
Make sure that our protocol-28 compatibility is OK.

19 years agoFixed a problem sending include rules to an older rsync.
Wayne Davison [Sat, 26 Feb 2005 02:56:30 +0000 (02:56 +0000)]
Fixed a problem sending include rules to an older 

19 years ago- Call maybe_send_keepalive() if timeouts are enabled.
Wayne Davison [Fri, 25 Feb 2005 22:01:36 +0000 (22:01 +0000)]
- Call maybe_send_keepalive() if timeouts are enabled.
- Use the new ignore_timeout variable.

19 years ago- Added variable "ignore_timeout" that lets the generator tell
Wayne Davison [Fri, 25 Feb 2005 21:58:13 +0000 (21:58 +0000)]
- Added variable "ignore_timeout" that lets the generator tell
  us to ignore a timeout without turning off the timeout-related
  time-keeping that the keep-alive processing needs.
- Added a new function:  maybe_send_keepalive().

19 years agoAccept the new keep-alive (no-op) packet.
Wayne Davison [Fri, 25 Feb 2005 21:56:00 +0000 (21:56 +0000)]
Accept the new keep-alive (no-op) packet.

19 years agoDon't add st_size from a device to stats.total_size.
Wayne Davison [Fri, 25 Feb 2005 20:28:27 +0000 (20:28 +0000)]
Don't add st_size from a device to stats.total_size.

19 years agoMention how --backup sometimes implies --omit-dir-times.
Wayne Davison [Fri, 25 Feb 2005 17:10:48 +0000 (17:10 +0000)]
Mention how --backup sometimes implies --omit-dir-times.

19 years agoUse the new am_starting_up value in who_am_i().
Wayne Davison [Fri, 25 Feb 2005 17:08:57 +0000 (17:08 +0000)]
Use the new am_starting_up value in who_am_i().

19 years agoGot rid of kluged value for am_sender, and instead added a new
Wayne Davison [Fri, 25 Feb 2005 17:08:31 +0000 (17:08 +0000)]
Got rid of kluged value for am_sender, and instead added a new
variable named am_starting_up that is non-zero during the option
parsing.  This lets the who_am_i() routine output a better value
for debugging info that is output during the option parsing.

19 years agoFixed some typos.
Wayne Davison [Fri, 25 Feb 2005 02:30:38 +0000 (02:30 +0000)]
Fixed some typos.

19 years agoPreparing for release of 2.6.4pre1
Wayne Davison [Wed, 23 Feb 2005 03:22:53 +0000 (03:22 +0000)]
Preparing for release of 2.6.4pre1

19 years agoTweaked an entry.
Wayne Davison [Wed, 23 Feb 2005 03:17:11 +0000 (03:17 +0000)]
Tweaked an entry.