From 988be99034d4a475b98f308f02a1e9af831ef459 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 23 Oct 2007 16:09:10 +0000 Subject: users/12087: fix globbing problem on Cygwin --- ChangeLog | 5 +++++ Src/pattern.c | 21 ++++++++++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 653eea3c1..e489d8307 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-23 Peter Stephenson + + * users/12087: fix a case where we doing globbing unncessarily to + find files case-insensitively in Cygwin. + 2007-10-22 Peter Stephenson * 24007: Src/prompt.c, Src/utils.c: mildly suspicious things diff --git a/Src/pattern.c b/Src/pattern.c index 9e2df499c..26b06513e 100644 --- a/Src/pattern.c +++ b/Src/pattern.c @@ -1167,7 +1167,26 @@ patcomppiece(int *flagp) * ..(#a1).. (i.e. the (#a1) has no effect), but if you're * going to write funny patterns, you get no sympathy from me. */ - if (patglobflags & (0xFF|GF_LCMATCHUC|GF_IGNCASE)) { + if (patglobflags & +#ifdef __CYGWIN__ + /* + * As above: don't use pattern matching for files + * just because of case insensitivity if file system + * is known to be case insensitive. + * + * This is known to be necessary in at least one case: + * if "mount -c /" is in effect, so that drives appear + * directly under / instead of the usual /cygdrive, they + * aren't shown by readdir(). So it's vital we don't use + * globbing to find "/c", since that'll fail. + */ + ((patflags & PAT_FILE) ? + (0xFF|GF_LCMATCHUC) : + (0xFF|GF_LCMATCHUC|GF_IGNCASE)) +#else + (0xFF|GF_LCMATCHUC|GF_IGNCASE) +#endif + ) { if (!(patflags & PAT_FILE)) flags &= ~P_PURESTR; else if (!(nptr[0] == '.' && -- cgit 1.4.1