Displaying 20 results from an estimated 24 matches for "wildmatch".
2003 Jul 06
3
New wildmatch code in CVS
If you've been watching CVS, you may have noticed that I checked in some
new files named wildmatch.c and wildmatch.h. This code implements the
shell-style wildcard matching with rsync's extension that "**" matches a
"/" but "*" and "?" does not. I have also checked in a new test module
which has allowed me to test a few things on all the machines in...
2008 Apr 07
3
rsync installation _error exit code1
...st.h", line 26: warning 5: "const" will become a keyword.
(Bundled) cc: "lib/mdigest.h", line 26: error 1000: Unexpected symbol: "const".
(Bundled) cc: "lib/mdigest.h", line 26: error 1705: Function prototypes are an ANSI feature.
(Bundled) cc: "lib/wildmatch.h", line 3: warning 5: "const" will become a keyword.
(Bundled) cc: "lib/wildmatch.h", line 3: error 1000: Unexpected symbol: "char".
(Bundled) cc: "lib/wildmatch.h", line 3: warning 5: "const" will become a keyword.
(Bundled) cc: "lib/wil...
2004 May 27
0
compiling on HP-UX
...conditional expression
clientserver.c:276: warning: signed and unsigned type in conditional expression
access.c: In function `match_address':
access.c:102: warning: implicit declaration of function `getaddrinfo'
access.c:113: warning: implicit declaration of function `freeaddrinfo'
lib/wildmatch.c: In function `domatch':
lib/wildmatch.c:159: warning: signed and unsigned type in conditional expression
lib/wildmatch.c:163: warning: signed and unsigned type in conditional expression
lib/wildmatch.c:171: warning: signed and unsigned type in conditional expression
lib/wildmatch.c:175: warni...
2020 Feb 09
3
[draft PATCH] whitelist support for refuse options
...>descrip = "refused";
+ }
+ } else {
+ is_wild = strpbrk(bp, "*?[") != NULL;
+ found_match = 0;
+ for (op = long_options; ; op++) {
+ *shortname = op->shortName;
+ if (!op->longName && !*shortname)
+ break;
+ if ((op->longName && wildmatch(bp, op->longName))
+ || (*shortname && wildmatch(bp, shortname))) {
+ op->descrip = whitelist_mode ? 0 : "refused";
+ found_match = 1;
+ if (whitelist_mode && *shortname == 'a')
+ archive_whitelisted = 1;
+ if (!is_wild)
+ bre...
2004 Jan 07
1
BUG in 2.6.0: make test failes if build dir is not source dir
...here is a small bug in the build system of 2.6.0:
If the directory you build rsync in differs from the sourcedir "make test"
failes:
$ tar -xzf ~/rsync-2.6.0.tar.gz
$ mkdir build
$ cd build
$ ../rsync-2.6.0/configure
....
$ make test
....
PASS unsafe-byname
PASS unsafe-links
----- wildmatch log follows
Testing for symlinks using 'test -h'
+ /tmp/bla/build/wildtest
Unable to open wildtest.txt.
----- wildmatch log ends
FAIL wildmatch
------------------------------------------------------------
----- overall results:
14 passed
1 failed
3 skipped
-------------...
2004 Feb 01
1
innetgr revised netgroup patch against 2.6.0
...){
+ if(tok[0]=='@'){
+ netgroup=tok+1;
+ if(innetgr(netgroup, host, NULL, NULL)){
+ return(1);
+ }
+ }
+ }
if (!host || !*host) return 0;
return wildmatch(tok, host);
}
Travis
http://www.deakin.edu.au/~travis/sig.html
2003 Jul 05
1
make check's diff -u vs -c
...samba.org
> Message-ID: <20030705070931.ACC082C0BF@lists.samba.org>
>
>
> Date: Sat Jul 5 07:09:31 2003
> Author: wayned
>
> Update of /data/cvs/rsync/testsuite
> In directory dp.samba.org:/tmp/cvs-serv22903
>
> Modified Files:
> rsync.fns trimslash.test wildmatch.test
> Log Message:
> Changed "diff -u" back to "diff -c" (for portability).
>
>
> Revisions:
> rsync.fns 1.56 => 1.57
> http://www.samba.org/cgi-bin/cvsweb/rsync/testsuite/rsync.fns.diff?r1=1.56&r2=1.57
> trimslash.test 1.2 => 1.3
> h...
2005 Sep 14
1
RSYNC "make" problems with HP UX 11.0 & GCC 3.3.2
...: warning: implicit declaration of function `freeaddrinfo'
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c connection.c -o
connection.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c authenticate.c
-o authenticate.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c lib/wildmatch.c
-o lib/wildmatch.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c lib/compat.c -o
lib/compat.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c lib/snprintf.c
-o lib/snprintf.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c lib/mdfour.c -o
lib/mdfour.o
gcc -I. -I. -g -...
2003 Dec 15
2
Prepping for a new release (2.5.8? 2.6.0?)
On Sun, Dec 14, 2003 at 11:32:07PM -0600, John Van Essen wrote:
> would you care to take the bull by the horns and produce a release
> candidate for 2.5.8 so that the rsync enthusiasts on the rsync mailing
> list can give it a whirl prior to an official release (hopefully by
> Christmas)?
I was just about to say something about this on the list, so I'll do it
in reply to your
2004 Jan 31
1
netgroups patch for rsync 2.6.0
...ot;");
+ sscanf(tok, "@%s", netgroup);
+ setnetgrent(netgroup);
+ while(getnetgrent(&machinep, &userp, &domainp)){
+ if(machinep!=NULL){
+ if(strcmp(host, machinep)==0){
+ return(1);
+ }
+ }
+ }
+ }
+ }
if (!host || !*host) return 0;
return wildmatch(tok, host);
}
Travis
http://www.deakin.edu.au/~travis/sig.html
2005 Jun 09
0
[Bug 2780] New: fix acl patch
...QAContact: rsync-qa@samba.org
--- rsync-2.6.5/patches/acls.diff.acl-patch 2005-06-01 18:22:41.000000000 +0200
+++ rsync-2.6.5/patches/acls.diff 2005-06-09 09:10:29.628842558 +0200
@@ -21,7 +21,7 @@
+HEADERS=byteorder.h config.h errcode.h proto.h rsync.h smb_acls.h lib/pool_alloc.h
LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \
- lib/permstring.o lib/pool_alloc.o @LIBOBJS@
-+ lib/permstring.o lib/pool_alloc.o lib/sysacls.o @LIBOBJS@
++ lib/permstring.o lib/pool_alloc.o sysacls.o @LIBOBJS@
ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \
zlib/inflate...
2004 May 11
1
Would this patch be useful...
...tc. type files.
Rsyncd has this feature with it's "dont compress" option, but I think
many users are using rsync over ssh and therefore do not have this
functionality available to them.
The way my test code works is by modifying the set_compression() function
in token.c and using the wildmatch() function, exactly like rsyncd's
dont compress option is doing now.
If this seems useful, I want to receive input on how to implement
the user-interface. I was thinking about two command line options,
--dont-compress and --dont-compress-from.
This is what it would look like:
rsync -z --don...
2008 Mar 03
0
3.0.1 Test Success MacOS X 10.4.11
...rs log ends
FAIL xattrs
------------------------------------------------------------
----- overall results:
30 passed
1 failed
6 skipped
------------------------------------------------------------
overall result is 1
make: *** [check] Error 1
sudo make check
.....
PASS wildmatch
PASS xattrs
------------------------------------------------------------
----- overall results:
33 passed
4 skipped
------------------------------------------------------------
overall result is 0
sudo make install
cd /usr/local/Source/backup-bouncer-0.1.2/
./bbouncer create-vol...
2006 Dec 15
2
BugReport: rsync fails it's own "regression" test "chmod-option"
...executability
PASS fuzzy
PASS hands
PASS hardlinks
PASS itemize
PASS longdir
PASS merge
PASS relative
SKIP ssh-basic (Skipping SSH tests because $rsync_enable_ssh_tests is not set)
PASS symlink-ignore
PASS trimslash
PASS unsafe-byname
PASS unsafe-links
PASS wildmatch
- ------------------------------------------------------------
- ----- overall results:
28 passed
3 skipped
- ------------------------------------------------------------
overall result is 0
hugh@far $ so
.bashrc@far.toad.com
root@far # make check
rsync_bin=`pwd`/rsync ./runtests.sh
===...
2008 May 17
1
DO NOT REPLY [Bug 5472] New: FreeBSD 3.0.3pre2 'make check' failures
...-- hardlinks log ends
FAIL hardlinks
PASS itemize
PASS longdir
PASS merge
PASS missing
PASS relative
SKIP ssh-basic (Skipping SSH tests because ssh conection to localhost not
authorised)
PASS symlink-ignore
PASS trimslash
PASS unsafe-byname
PASS unsafe-links
PASS wildmatch
SKIP xattrs (Unable to set an xattr)
------------------------------------------------------------
----- overall results:
29 passed
1 failed
7 skipped
------------------------------------------------------------
overall result is 1
--
Configure bugmail: https://bugzilla.samba...
2008 May 17
1
DO NOT REPLY [Bug 5473] New: OS-X Leopard Rsync 3.0.3pre2 make check failures
...-- hardlinks log ends
FAIL hardlinks
PASS itemize
PASS longdir
PASS merge
PASS missing
PASS relative
SKIP ssh-basic (Skipping SSH tests because ssh conection to localhost not
authorised)
PASS symlink-ignore
PASS trimslash
PASS unsafe-byname
PASS unsafe-links
PASS wildmatch
SKIP xattrs (Unable to set an xattr)
------------------------------------------------------------
----- overall results:
30 passed
1 failed
6 skipped
------------------------------------------------------------
overall result is 1
make: *** [check] Error 1
--
Configure bugma...
2008 May 17
3
DO NOT REPLY [Bug 5470] New: Make check failures on Solaris 10 with rsync 3.0.3pre2
...-- hardlinks log ends
FAIL hardlinks
PASS itemize
PASS longdir
PASS merge
PASS missing
PASS relative
SKIP ssh-basic (Skipping SSH tests because ssh conection to localhost not
authorised)
PASS symlink-ignore
PASS trimslash
PASS unsafe-byname
PASS unsafe-links
PASS wildmatch
SKIP xattrs (Rsync is configured without xattr support)
------------------------------------------------------------
----- overall results:
27 passed
1 failed
9 skipped
------------------------------------------------------------
overall result is 1
gmake: *** [check] Error 1...
2009 Jul 07
0
rsync-3.0.6 regression test problems
...cr/viz-hpux/koenig/rsync-3.0.6-1/ARENA/32/testtmp/itemize/from/bar/baz/rsync: Not owner
----- itemize log ends
FAIL itemize
PASS longdir
PASS merge
PASS missing
PASS relative
PASS ssh-basic
PASS symlink-ignore
PASS trimslash
PASS unsafe-byname
PASS unsafe-links
PASS wildmatch
SKIP xattrs (Rsync is configured without xattr support)
------------------------------------------------------------
----- overall results:
28 passed
4 failed
6 skipped
------------------------------------------------------------
overall result is 4
181304 1 drwxrwxr-x 6...
2008 Mar 02
3
DO NOT REPLY [Bug 5297] New: merge test fails
...-and-not-dir and to/dir-and-not-dir
Common subdirectories: chk/sub1 and to/sub1
Common subdirectories: chk/sub2 and to/sub2
-------------
----- merge log ends
FAIL merge
PASS relative
PASS ssh-basic
PASS symlink-ignore
PASS trimslash
PASS unsafe-byname
PASS unsafe-links
PASS wildmatch
SKIP xattrs (Rsync is configured without xattr support)
------------------------------------------------------------
----- overall results:
28 passed
2 failed
6 skipped
------------------------------------------------------------
overall result is 2
gmake: *** [check] Error 2...
2010 Aug 17
6
DO NOT REPLY [Bug 7625] New: "Don't know how to make ./*.c"
https://bugzilla.samba.org/show_bug.cgi?id=7625
Summary: "Don't know how to make ./*.c"
Product: rsync
Version: 3.0.7
Platform: s390
OS/Version: Other
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned at samba.org
ReportedBy: sebastian.hoffman at