1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* dir.c (fnmatch): Make PERIOD() independent of FNM_PATHNAME.

This fixes a bug where fnmatch('/?a', '/.a', 0) returned true.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2002-05-03 22:39:40 +00:00
parent 74c37c00b0
commit df05c380d6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat May 4 07:23:20 2002 Akinori MUSHA <knu@iDaemons.org>
* dir.c (fnmatch): Make PERIOD() independent of FNM_PATHNAME.
This fixes a bug where fnmatch('/?a', '/.a', 0) returned true.
Fri May 3 20:19:00 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in: add #include <errno.h> in AC_CHECK_DECLS().

2
dir.c
View file

@ -141,7 +141,7 @@ range(pat, test, flags)
#define ISDIRSEP(c) (pathname && isdirsep(c))
#define PERIOD(s) (period && *(s) == '.' && \
((s) == string || ISDIRSEP((s)[-1])))
((s) == string || isdirsep((s)[-1])))
static int
fnmatch(pat, string, flags)
const char *pat;