summaryrefslogtreecommitdiff
path: root/lib/wildmatch.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2003-07-05 22:40:27 +0000
committerWayne Davison <wayned@samba.org>2003-07-05 22:40:27 +0000
commitc9a59880f0ddf58c700834fea80c08c39c27ccb3 (patch)
tree92a2190c4b69b83ae907a2ecb68c301016c5ab46 /lib/wildmatch.c
parent9a17dddbc5b1cfd6ad83d20c4616c97614a83dde (diff)
downloadrsync-c9a59880f0ddf58c700834fea80c08c39c27ccb3.tar.gz
Simplified the character-class code a bit.
Diffstat (limited to 'lib/wildmatch.c')
-rw-r--r--lib/wildmatch.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/lib/wildmatch.c b/lib/wildmatch.c
index bda50b8e..9276954c 100644
--- a/lib/wildmatch.c
+++ b/lib/wildmatch.c
@@ -60,7 +60,7 @@ static int domatch(const char *p, const char *text)
if (*p == '\0') {
/* Trailing "**" matches everything. Trailing "*" matches
* only if there are no more slash characters. */
- return special? TRUE : strchr(text, '/') == 0;
+ return special? TRUE : strchr(text, '/') == NULL;
}
for ( ; *text; text++) {
if ((matched = domatch(p, text)) != FALSE) {
@@ -72,21 +72,16 @@ static int domatch(const char *p, const char *text)
}
return ABORT_ALL;
case '[':
- special = *++p == NEGATE_CLASS ? TRUE : FALSE;
+ ch = *++p;
+ /* Assign literal TRUE/FALSE because of "matched" comparison. */
+ special = ch == NEGATE_CLASS? TRUE : FALSE;
if (special) {
/* Inverted character class. */
- p++;
+ ch = *++p;
}
prev = 0;
matched = FALSE;
- ch = *p;
- if (ch == ']' || ch == '-') {
- if (*text == ch)
- matched = TRUE;
- prev = ch;
- ch = *++p;
- }
- for ( ; ch != ']'; prev = ch, ch = *++p) {
+ do {
if (!ch)
return FALSE;
if (ch == '-' && prev && p[1] && p[1] != ']') {
@@ -96,7 +91,7 @@ static int domatch(const char *p, const char *text)
}
else if (*text == ch)
matched = TRUE;
- }
+ } while (prev = ch, (ch = *++p) != ']');
if (matched == special)
return FALSE;
continue;