summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Output the who_am_i() info in the "unknown message" error.Wayne Davison2006-03-281-1/+2
|
* Mention latest tweaks.Wayne Davison2006-03-221-0/+5
|
* If open_socket_in() fails, we now log the reasons why.Wayne Davison2006-03-221-4/+25
|
* Mention the new support/file-attr-restore script.Wayne Davison2006-03-211-1/+5
|
* A nice file-attribute maintenance script that lets you restoreWayne Davison2006-03-211-0/+172
| | | | | permissions, ownership, and group-info on files that may be different than the originals.
* Fixed a few things that looked like yodl macros but were not.Wayne Davison2006-03-211-5/+5
|
* Improved a few things that a more modern yodl complained about.Wayne Davison2006-03-211-9/+10
|
* Changed where ITEM_REPORT_ATIME goes in the list.Wayne Davison2006-03-171-3/+3
|
* Go ahead and define upcoming ITEM_REPORT_* defines now.Wayne Davison2006-03-171-1/+3
|
* Added support for using solaris's "setfacl -s" in place ofWayne Davison2006-03-161-5/+7
| | | | GNU's "setfacl -k".
* Make sure that the --relative test creates the implied directoriesWayne Davison2006-03-161-3/+4
| | | | | with user-write permission, and turns any symlinks in the implied dirs into real dirs.
* An extra safeguard for msg2sndr_flush().Wayne Davison2006-03-161-1/+1
|
* Made the new msg2sndr handling even better.Wayne Davison2006-03-161-14/+25
|
* Mention fix for stunnel-using rsync.Wayne Davison2006-03-161-0/+5
|
* Optimized the reacquisition of the code value from the msg2sndr list.Wayne Davison2006-03-161-1/+1
|
* Fixed the reacquisition of the code value from the msg2sndr list.Wayne Davison2006-03-161-1/+2
|
* - Optimized the msg_list_item structure to make the buffer anWayne Davison2006-03-161-46/+56
| | | | | | | | | | | | | | integral part of the structure instead of pointer to a separately allocated buffer. - Improved the code that was ensuring that no messages from the receiver could be merged into the middle of a partially written buffer from the generator. The new code ensures that we never avoid reading the messages from the receiver (like we used to). This ensures that the generator will not hang when the receiver got a read error on the socket, sent us a message about it, but the socket in the generator never becomes writable for it to get a similar error (now we are assured of getting the receiver's note about their read error, and we know to shut things down).
* Mention the log-file.diff.Wayne Davison2006-03-151-2/+8
|
* Got rid of an errant newline.Wayne Davison2006-03-151-1/+0
|
* Improved the regex to match syslog lines and be easier to read.Wayne Davison2006-03-131-2/+15
|
* Changing the version to 2.6.8cvs.Wayne Davison2006-03-131-1/+1
|
* Starting the news for 2.6.8.Wayne Davison2006-03-131-313/+7
|
* Rolling over the NEWS from 2.6.7.Wayne Davison2006-03-131-0/+321
|
* Fixed a bug where the NEWS file got an extra newline inserted whenWayne Davison2006-03-131-3/+3
| | | | | the release date was added. Changed "ln -f" to "cp -p" because samba.org doesn't allow ln to be used at the moment.
* Added a test of a simple exclude when --relative is enabled.Wayne Davison2006-03-131-0/+7
|
* Fixed a problem when copying an absolute source path withWayne Davison2006-03-131-1/+1
| | | | the --relative option enabled.
* Block-quote the itemized list in the --stats section so thatWayne Davison2006-03-131-2/+2
| | | | it is indented in the manpage.
* Preparing for release of 2.6.7v2.6.7Wayne Davison2006-03-116-8/+9
|
* Mention solo-dir fix for a dir without S_IWUSR.Wayne Davison2006-03-111-0/+4
|
* Don't force S_IWUSR on a solo directory transfer.Wayne Davison2006-03-101-3/+3
|
* Make extra sure that authbuf can't overflow.Wayne Davison2006-03-071-1/+1
|
* Mention fix for Proxy-Authorization header.Wayne Davison2006-03-061-0/+5
|
* Call base4_encode() with "1" for its new "pad" arg so that theWayne Davison2006-03-061-1/+1
| | | | | Proxy-Authorization header is properly padded with trailing '=' chars.
* The base4_encode() function now takes a "pad" arg which indicatesWayne Davison2006-03-061-5/+8
| | | | if the caller wants to pad the value with trailing '=' chars.
* Tweaked the mode of the files in the tar file.Wayne Davison2006-03-041-1/+1
|
* Since the samba.org rsync is so old that it doesn't handleWayne Davison2006-03-021-10/+19
| | | | | out-of-order hard-linked files, changed the script to do the hard-linking manually.
* Preparing for release of 2.6.7pre3v2.6.7pre3Wayne Davison2006-03-024-6/+6
|
* Mention the get_local_name() change.Wayne Davison2006-03-021-0/+3
|
* Don't allow overwriting a non-directory with a directory (justWayne Davison2006-03-021-0/+7
| | | | like cp).
* If get_local_name() fails to stat() the destination for anyWayne Davison2006-03-021-2/+6
| | | | | reason other than the destination does not exist, mention the error and exit.
* A couple more improvements for --list-only.Wayne Davison2006-03-011-3/+8
|
* Improved a couple sentences.Wayne Davison2006-03-011-4/+3
|
* One more bugfix.Wayne Davison2006-02-281-0/+3
|
* Got the order of s1 and s2 right in the debug output.Wayne Davison2006-02-281-1/+1
|
* Update for hash-table change.Wayne Davison2006-02-281-7/+3
|
* Decided to drop the dynamically sized hash table for now. This wasWayne Davison2006-02-281-18/+14
| | | | | | due to timing tests showing that the per-byte modulus calculation slowed down regular sized files. Kept the other improvements because they lessened our memory use and actually sped up the code.
* Renamed sum_table -> hash_table.Wayne Davison2006-02-281-8/+8
|
* Changed the name of GETTAG() to SUM2HASH().Wayne Davison2006-02-281-3/+3
|
* Eliminated one variable from hash_search().Wayne Davison2006-02-281-3/+1
|
* - Fixed a problem with the new gettag2() macro by getting rid of theWayne Davison2006-02-281-17/+21
| | | | | | | need for it. - Fixed a really old bug in the verbose output where it would output the wrong sum value (off by one). - Renamed the tag_hit variables & debug output to hash_hit.