* glob.cc (MAXPATHLEN): Reinstantiate with a value of 8192.

This commit is contained in:
Corinna Vinschen 2012-03-07 10:12:28 +00:00
parent 86b87ffa9b
commit 1d928241e1
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2012-03-07 Corinna Vinschen <corinna@vinschen.de>
* glob.cc (MAXPATHLEN): Reinstantiate with a value of 8192.
2012-03-05 Denis Excoffier <cygwin@Denis-Excoffier.org>
* pinfo.cc (_pinfo::dup_proc_pipe): Fix order of arguments in debug

View File

@ -111,6 +111,9 @@ __FBSDID("$FreeBSD: src/lib/libc/gen/glob.c,v 1.28 2010/05/12 17:44:00 gordon Ex
#define Cchar(c) (ignore_case_with_glob ? towlower (c) : (c))
#endif
#undef MAXPATHLEN
#define MAXPATHLEN 8192
#define DOLLAR '$'
#define DOT '.'
#define EOS '\0'