]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(glob_in_dir): Add support for cases insensitive VMS.
authorUlrich Drepper <drepper@redhat.com>
Mon, 2 Mar 1998 09:49:48 +0000 (09:49 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 2 Mar 1998 09:49:48 +0000 (09:49 +0000)
posix/glob.c

index 85747f5a9dfd0fdb691871b4b7f90bd2605c036d..29697f4c555e3c73807f78be442363caac6cde21 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc.
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public License as
@@ -1016,7 +1016,7 @@ glob_in_dir (pattern, directory, flags, errfunc, pglob)
              || fnmatch (pattern, name,
                          (!(flags & GLOB_PERIOD) ? FNM_PERIOD : 0) |
                          ((flags & GLOB_NOESCAPE) ? FNM_NOESCAPE : 0)
-#ifdef _AMIGA
+#if defined _AMIGA || defined VMS
                          | FNM_CASEFOLD
 #endif
                         ) == 0)