]> sourceware.org Git - newlib-cygwin.git/commitdiff
* glob.cc (MAXPATHLEN): Reinstantiate with a value of 8192.
authorCorinna Vinschen <corinna@vinschen.de>
Wed, 7 Mar 2012 10:12:28 +0000 (10:12 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Wed, 7 Mar 2012 10:12:28 +0000 (10:12 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/glob.cc

index 96d8cd39f946c772edf97e16a012fefba8a66428..392f6f07c7d4b88eaaedfb345ea0efa597b0d8b3 100644 (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
index b732f14c597fe540bb700ce2ef1973ca4147c043..4cc442eabf8efe66de7b2ac3d8d3b0112180fb9c 100644 (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'
This page took 0.033761 seconds and 5 git commands to generate.