summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make the situation w.r.t. dynamically linking zlib and libpopt clear.Martin Pool2002-03-252-2/+19
|
* Add link to Apple bug.Martin Pool2002-03-251-1/+3
|
* DocMartin Pool2002-03-251-0/+2
|
* Hm, strange off-by-one bug.Martin Pool2002-03-251-1/+1
|
* Apparently the OS X port of gcc gags on __attribute__.Martin Pool2002-03-251-11/+10
|
* If we discover a hardlink with -vv say what it's a link to.Martin Pool2002-03-251-1/+6
|
* Fix from Jos for batch mode on Solaris.Martin Pool2002-03-251-1/+1
|
* Disambiguate hard link messages.Martin Pool2002-03-251-1/+1
|
* Apparently SGI make doesn't like $< in non-implicit rules.Martin Pool2002-03-251-1/+1
|
* Doc.Martin Pool2002-03-251-0/+2
|
* Note about mkdir bug.Martin Pool2002-03-251-0/+5
|
* Add a test case for trim_trailing_slashes, and make it handle other cases.Martin Pool2002-03-254-8/+90
|
* Code that was meant to trim trailing slashes from mkdir() pathsMartin Pool2002-03-251-8/+16
| | | | actually did not; fix it.
* Need to also delete getgroups when cleaning.Martin Pool2002-03-251-1/+1
|
* Define NGROUPS if not already done.Martin Pool2002-03-251-0/+5
|
* Clean testtmp*, because we now put tests in their own directories.Martin Pool2002-03-251-2/+4
| | | | Add "make cleantests"
* Change chgrp.test to use our getgroups rather than the system's.Martin Pool2002-03-253-5/+9
|
* Initial revision.Martin Pool2002-03-251-0/+2
|
* Add our own little tool to call getgroups(2) because it's too hard toMartin Pool2002-03-252-0/+47
| | | | find a portable shell command that does it.
* Clean up text.Martin Pool2002-03-221-3/+1
|
* Clean up text.Martin Pool2002-03-221-3/+2
|
* Doc permissions while testing.Martin Pool2002-03-221-2/+8
|
* Rather than literally "nobody", try using uid/gid = 65534 asMartin Pool2002-03-221-0/+6
| | | | "nobody". The existing code kind-of assumes this.
* Better messages.Martin Pool2002-03-221-2/+2
|
* Proper messages for skipped tests.Martin Pool2002-03-223-12/+8
|
* If tests are skipped, explain why.Martin Pool2002-03-222-1/+3
|
* More sgml cleanups.Martin Pool2002-03-221-3/+7
|
* Doc about checkit.Martin Pool2002-03-221-0/+5
|
* Add /usr/xpg4/bin/ to PATH to help solaris.Martin Pool2002-03-221-0/+3
|
* Cope on systems without the whoami command.Martin Pool2002-03-221-6/+1
|
* If there's an error in start_socket_client, print an explanation asMartin Pool2002-03-221-4/+13
| | | | | | | | | | well as failing. Doc. Trying to work out why daemon-gzip-download.test fails on SCO with rsync error: unexplained error (code 190) at main.c(886)
* Doc.Martin Pool2002-03-221-3/+9
|
* Notes on logging etcMartin Pool2002-03-221-0/+13
|
* Doc.Martin Pool2002-03-221-3/+3
|
* Use `id -G` rather than `groups` to get a list of groups for thisMartin Pool2002-03-221-1/+3
| | | | | user, so that we can cope on systems like Cygwin that tend to have group names containing spaces.
* * Make "make install-strip" works properly, and "make install"Martin Pool2002-03-202-7/+12
| | | | | accepts a DESTDIR variable for help in building binary packages. (Peter Breitenlohner)
* Patch from Paul Haas:Martin Pool2002-03-202-7/+31
| | | | | | | | | * Fix situation where failure to fork (e.g. because out of process slots) would cause rsync to kill all processes owned by the current user. Yes, really! (Paul Haas, Martin Pool) Also, add a little more documentation and paranoia to make sure we never call kill(2) with a negative pid.
* Now that whole_file and no_whole_file are separate variables, have theDavid Dykstra2002-03-192-6/+14
| | | | | --whole-file and --no-whole-file options set/reset both variables so if more than one option is specified the last one will be the one honored.
* Clean up sgml.Martin Pool2002-03-191-1/+18
| | | | Add note about building with gcc.
* todo: Versions of read() and write() that corrupt the stream, or abruptly failMartin Pool2002-03-191-0/+2
|
* Fix --help layout.Martin Pool2002-03-191-1/+1
|
* Fix overly long line in version.Martin Pool2002-03-191-3/+4
|
* Follow advice from GPL to insert a disclaimer of warranty in theMartin Pool2002-03-191-0/+7
| | | | version and help information.
* Doc: Pipe program that makes slow/jerky connections.Martin Pool2002-03-191-0/+2
|
* Include all fields in the options table to quieten gcc warnings aboutMartin Pool2002-03-191-72/+72
| | | | missing initializers.
* Intentional test of assert :_)Martin Pool2002-03-191-1/+1
|
* Previous solution for --no-whole-file would probably break whenMartin Pool2002-03-193-19/+42
| | | | | | | | connecting to old servers that don't have --no-whole-file. Instead, we handle no_whole_file and whole_file separately, without the magic -1 value. We don't modify no_whole_file after initialization.
* Sending --no-whole-file is no good because it will not work with oldMartin Pool2002-03-191-2/+0
| | | | versions of rsync.
* Typo.Martin Pool2002-03-191-1/+1
|
* Fix --whole-file problem that caused it to be the default even forMartin Pool2002-03-194-1/+23
| | | | | | | | | remote connections. (Frank Schulz) <http://lists.samba.org/pipermail/rsync/2002-March/006526.html> Also, add documentation for whole_file and add assertions that the value is valid.