| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Got rid of type-casting into isFOO() and toFOO() functions by | Wayne Davison | 2006-11-09 | 1 | -4/+3 |
| | | | | | using static inline functions that take a signed char pointer. | ||||
| * | Indented the function comments with "* ". | Wayne Davison | 2006-10-13 | 1 | -27/+26 |
| | | |||||
| * | Removed the changes in symlink handling in non-chroot daemon mode as | Wayne Davison | 2006-10-12 | 1 | -4/+0 |
| | | | | | | they were not yet safe (I'll consider similar changes for the next release). | ||||
| * | Added the "munge symlinks" setting. | Wayne Davison | 2006-07-03 | 1 | -0/+4 |
| | | |||||
| * | Made "log file" and "syslog facility" per-module settings. | Wayne Davison | 2006-06-07 | 1 | -9/+12 |
| | | |||||
| * | Updated the FSF's address to an even newer one. | Wayne Davison | 2006-04-25 | 1 | -3/+3 |
| | | |||||
| * | - Updated the address for the FSF in the opening comment. | Wayne Davison | 2006-04-25 | 1 | -17/+17 |
| | | | | | | | | - Standardized the format of the opening comment, including adding a brief description of what's in the file for those that lacked it. - Added some missing copyright lines. - Some minor whitespace tweaks (in a few of the files). | ||||
| * | There's no need for lp_load() to check am_daemon. | Wayne Davison | 2006-04-06 | 1 | -2/+1 |
| | | |||||
| * | Added support for the new "outgoing chmod" daemon option. | Wayne Davison | 2006-01-30 | 1 | -0/+4 |
| | | |||||
| * | Added the "incoming chmod" config option. | Wayne Davison | 2006-01-30 | 1 | -0/+4 |
| | | |||||
| * | Tweaked some comments. | Wayne Davison | 2005-09-19 | 1 | -36/+39 |
| | | |||||
| * | Improved the sDefault initialization so that the prefixed | Wayne Davison | 2005-09-16 | 1 | -34/+34 |
| | | | | | | comments exactly match the variable names (making sure that they will sort exactly the same way as the variables). | ||||
| * | Added a per-module "temp dir" setting. | Wayne Davison | 2005-09-03 | 1 | -0/+4 |
| | | |||||
| * | Sorted some of the data structures (using vim's "!sort" command | Wayne Davison | 2005-09-03 | 1 | -119/+129 |
| | | | | | makes it easy). | ||||
| * | Added 2 new config options: "pre-xfer exec" and "post-xfer exec". | Wayne Davison | 2005-07-28 | 1 | -0/+10 |
| | | |||||
| * | Changed the "max verbosity" setting from global to per-module. | Wayne Davison | 2005-06-10 | 1 | -4/+4 |
| | | |||||
| * | Use the new NOBODY_USER and NOBODY_GROUP configure defines. | Wayne Davison | 2005-06-10 | 1 | -11/+2 |
| | | |||||
| * | Decided to leave the "log format" default the same as in | Wayne Davison | 2005-02-19 | 1 | -1/+1 |
| | | | | | earlier versions. | ||||
| * | Changed the default log format. | Wayne Davison | 2005-02-17 | 1 | -1/+1 |
| | | |||||
| * | Added the "filter" parameter. | Wayne Davison | 2005-01-25 | 1 | -0/+4 |
| | | |||||
| * | Added support for the "address" option. | Wayne Davison | 2004-12-06 | 1 | -0/+3 |
| | | |||||
| * | Allow "port" to be specified in the rsyncd.conf file. | Wayne Davison | 2004-11-27 | 1 | -0/+3 |
| | | |||||
| * | Don't ignore case in lp_number() because the rest of the daemon code | Wayne Davison | 2004-07-30 | 1 | -1/+1 |
| | | | | | | can't handle the case where the module name doesn't exactly match the string the user provided. | ||||
| * | Added the "write only" option to the daemon config file. | Wayne Davison | 2004-05-19 | 1 | -0/+4 |
| | | |||||
| * | Added "max verbosity" global parameter that allows you to configure | Wayne Davison | 2004-02-04 | 1 | -3/+6 |
| | | | | | a higher debug level instead of the default of level-l verbosity. | ||||
| * | Merged in the security fixes from 2.5.7. | Wayne Davison | 2003-12-06 | 1 | -2/+2 |
| | | |||||
| * | Make sure that the new slash-stripping P_PATH code doesn't turn | Wayne Davison | 2003-09-11 | 1 | -2/+2 |
| | | | | | a "/" into an empty string. | ||||
| * | Make sure that the "path" value has any trailing slashes removed. | Wayne Davison | 2003-09-10 | 1 | -2/+13 |
| | | |||||
| * | Got rid of trailing whitespace. | Wayne Davison | 2003-09-10 | 1 | -34/+33 |
| | | |||||
| * | When using daemon mode over a remote shell program and not running as root, | David Dykstra | 2002-08-30 | 1 | -1/+9 |
| | | | | | | | | | | default the config file to just "rsyncd.conf" in the current directory instead of /etc/rsyncd.conf. Also, fix problems with logging messages when running daemon mode over a remote shell program: it was pretty much doing the opposite of what it should have, sending early error messages to the log and later messages to the client. Switched it around so the very early error messages go to the client and the later ones go to the log. | ||||
| * | Try to fix ctype issues by always calling these functions as | Martin Pool | 2002-04-11 | 1 | -3/+3 |
| | | | | | | | | | | if (!isdigit(* (unsigned char *) p)) { so that the argument is always in the range of unsigned char when coerced to an int. (See digit 1.) | ||||
| * | Correction from Nelson Beebe: argument to functions such as isspace() | Martin Pool | 2002-04-09 | 1 | -3/+4 |
| | | | | | must be an int, not a char. This could cause sign-extension problems. | ||||
| * | Doc. | Martin Pool | 2002-03-25 | 1 | -0/+2 |
| | | |||||
| * | Doc: Debian uses "nogroup" instead of group "nobody", so our defaults | Martin Pool | 2002-03-15 | 1 | -1/+10 |
| | | | | | are not so good. | ||||
| * | Revert change from 1.39, because it causes a crash because of | Martin Pool | 2001-12-02 | 1 | -5/+10 |
| | | | | | | attempting to free a static string. (Thankyou to Paul Mackerras.) There's still a small leak here. | ||||
| * | Fix a small memory leak that was causing an Insure warning. | Martin Pool | 2001-11-26 | 1 | -2/+16 |
| | | |||||
| * | got rid of some unused variables | Andrew Tridgell | 2000-08-19 | 1 | -4/+0 |
| | | |||||
| * | added "ignore nonreadable" option (useful for hiding files in public archives) | Andrew Tridgell | 2000-08-19 | 1 | -1/+5 |
| | | |||||
| * | added *.bz2 and *.tbz to default dont compress list | Andrew Tridgell | 2000-06-24 | 1 | -1/+1 |
| | | |||||
| * | by default don't gzip .iso images | Andrew Tridgell | 2000-04-19 | 1 | -1/+1 |
| | | |||||
| * | added "ignore errors" option in rsyncd.conf | Andrew Tridgell | 1999-10-31 | 1 | -0/+4 |
| | | |||||
| * | Added "strict modes" option. When set false (default is true), it allows | David Dykstra | 1999-02-09 | 1 | -0/+4 |
| | | | | | | the secrets file to be readable by other users. Added to support the Windows port under cygwin. Problem reported by Martin Krumpolec krumpo@pobox.sk | ||||
| * | Use MAXHOSTNAMELEN (256) for the array holding the host_name in socket.c | David Dykstra | 1999-02-09 | 1 | -3/+0 |
| | | | | | | | instead of 200. Move the defines of True and False to rsync.h. Eliminate the defines of BOOL in loadparm.c and params.c because it is already defined in rsync.h. Changes suggested by Roman Gollent roman.gollent@wdr.com | ||||
| * | made the "max connections" and "lock file" local rather than global | Andrew Tridgell | 1999-01-08 | 1 | -8/+9 |
| | | | | | | options so you can set them on a per-module basis (requested by kernel.org mirror maintiner) | ||||
| * | Add "include" and "include from" rsyncd.conf options. Contributed | David Dykstra | 1998-11-23 | 1 | -2/+10 |
| | | | | | by Dennis Gilbert <dennis@oit.pdx.edu>. | ||||
| * | added "dont compress" option with the default setting of | Andrew Tridgell | 1998-11-20 | 1 | -0/+4 |
| | | | | | *.gz *.tgz *.zip *.z *.rpm *.deb | ||||
| * | added "refuse options" option | Andrew Tridgell | 1998-11-19 | 1 | -0/+4 |
| | | |||||
| * | changed strlcat() and strlcpy() to have the same semantics as the | Andrew Tridgell | 1998-11-14 | 1 | -2/+2 |
| | | | | | | | OpenBSD functions of the same name. changed slprintf() to take buffer length rather than buffer length -1 | ||||
| * | added timeout option in rsyncd.conf | Andrew Tridgell | 1998-11-04 | 1 | -0/+4 |
| | | |||||
| * | patch from Alberto Accomazzi <aaccomazzi@cfa.harvard.edu> to add | Andrew Tridgell | 1998-11-03 | 1 | -1/+1 |
| | | | | | different exit codes for different conditions. | ||||
