summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-08 12:14:49 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-08 12:14:49 +0000
commitf34d501658ede389ad13f904e844524244ff024b (patch)
tree480da78af9e4710bdbb482255abaa67afd2dc7e9 /dir.c
parent80a0920f5fb30fe8e05ba21fcc58c2de393e2ae1 (diff)
* dir.c (range): Cancel change for incomplete '['. More discussion
is needed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dir.c b/dir.c
index dc9a9d553e..f7260c1bf1 100644
--- a/dir.c
+++ b/dir.c
@@ -172,12 +172,12 @@ CompareImpl(p1, p2, nocase)
static const char *
range(
- const char *pattern,
+ const char *p, /* pattern */
const char *test,
int flags)
{
int not = 0, ok = 0;
- const char *p = pattern, *t1, *t2;
+ const char *t1, *t2;
const int nocase = flags & FNM_CASEFOLD;
const int escape = !(flags & FNM_NOESCAPE);
@@ -211,7 +211,7 @@ range(
}
}
- return *test == '[' ? pattern : 0; /* treat incompleted '[' as ordinary character */
+ return 0;
}
#define ISDIRSEP(c) (pathname && isdirsep(c))