From: Roland McGrath Date: Tue, 12 Dec 1995 02:50:12 +0000 (+0000) Subject: Updated from libc X-Git-Tag: 3.74.1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41e6704efd71ee4735685baa67c61e14642d9779;p=thirdparty%2Fmake.git Updated from libc --- diff --git a/glob/glob.c b/glob/glob.c index ce17fe13..e212576d 100644 --- a/glob/glob.c +++ b/glob/glob.c @@ -106,6 +106,8 @@ extern int errno; #define ANSI_STRING #else /* No standard headers. */ +extern char *getenv (); + #ifdef HAVE_STRING_H #include #define ANSI_STRING @@ -496,7 +498,8 @@ glob (pattern, flags, errfunc, pglob) struct stat st; for (i = oldcount; i < pglob->gl_pathc; ++i) if (((flags & GLOB_ALTDIRFUNC) ? - *pglob->gl_stat : __stat) (pglob->gl_pathv[i], &st) == 0 && + (*pglob->gl_stat) (pglob->gl_pathv[i], &st) : + __stat (pglob->gl_pathv[i], &st)) == 0 && S_ISDIR (st.st_mode)) { size_t len = strlen (pglob->gl_pathv[i]) + 2;