From 87942212a6c3ea591fe1b84e59074d6d8176bf6d Mon Sep 17 00:00:00 2001 From: ocean Date: Mon, 8 Mar 2004 12:14:49 +0000 Subject: * dir.c (range): Cancel change for incomplete '['. More discussion is needed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ dir.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index d74838052..012246cb0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Mar 8 21:09:39 Hirokazu Yamamoto + + * dir.c (range): Cancel change for incomplete '['. More discussion + is needed. + Mon Mar 8 19:35:13 2004 akira yamada * lib/uri/common.rb (URI::REGEXP::PATTERN::HOSTPORT): (?:#{PORT}) diff --git a/dir.c b/dir.c index dc9a9d553..f7260c1bf 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)) -- cgit