search for: include_from

Displaying 3 results from an estimated 3 matches for "include_from".

2001 Dec 28
1
(patch) memory leak in loadparm.c
...comment); + maybe_init(lock_file); + maybe_init(uid); + maybe_init(gid); + maybe_init(hosts_allow); + maybe_init(hosts_deny); + maybe_init(auth_users); + maybe_init(secrets_file); + maybe_init(exclude); + maybe_init(exclude_from); + maybe_init(include); + maybe_init(include_from); + maybe_init(log_format); + maybe_init(refuse_options); + maybe_init(dont_compress); +#undef maybe_init + } } /*************************************************************************** @@ -386,16 +410,9 @@ /** - * Assign a copy of @p v to @p *s. Handles NULL strings. @p *v...
2001 Dec 03
2
Bug in rsyncd 2.5.0 while handling config file string values
...nly = 1, list = 1, use_chroot = 1, transfer_logging = 0, ignore_errors = 0, uid = 0x807680c "nobody", gid = 0x807680c "nobody", hosts_allow = 0x0, hosts_deny = 0x0, auth_users = 0x0, secrets_file = 0x0, strict_modes = 1, exclude = 0x0, exclude_from = 0x0, include = 0x0, include_from = 0x0, log_format = 0x80767f3 "%o %h [%a] %m (%u) %f %l", refuse_options = 0x0, dont_compress = 0x80767c0 "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", timeout = 0, max_connections = 0, ignore_nonreadable = 0} (gdb) shell cat ../rsyncd.conf uid = foobar (gdb)...
2004 Mar 10
4
HFS+ resource forks: WIP patch included
...e, MAXPATHLEN - off); + } else { + strlcpy(p, bname, MAXPATHLEN); + } + + return p; +} diff -u rsync-2.6.0/loadparm.c rsync-2.6.0-dar/loadparm.c --- rsync-2.6.0/loadparm.c Sat Dec 6 16:07:27 2003 +++ rsync-2.6.0-dar/loadparm.c Sat Mar 6 16:35:39 2004 @@ -135,6 +135,7 @@ char *include; char *include_from; char *log_format; + char *hfs_mode; char *refuse_options; char *dont_compress; int timeout; @@ -293,6 +294,7 @@ {"transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging,NULL,0}, {"ignore errors", P_BOOL, P_LOCAL, &sDefault.ignore_errors,...