summaryrefslogtreecommitdiff
path: root/posix/glob.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-03-02 09:49:48 +0000
committerUlrich Drepper <drepper@redhat.com>1998-03-02 09:49:48 +0000
commitfb973e7f76fae77b6678921bc689960b65acf7ad (patch)
treefdf77ed6e9991091343f1aa2efc1b8b852d1fe8a /posix/glob.c
parentc2e3af6ee68d6c36164d49df92ec501e9343475f (diff)
(glob_in_dir): Add support for cases insensitive VMS.
Diffstat (limited to 'posix/glob.c')
-rw-r--r--posix/glob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/glob.c b/posix/glob.c
index 85747f5a9d..29697f4c55 100644
--- a/posix/glob.c
+++ b/posix/glob.c
@@ -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)