ITS#2922 disable argument globbing under Cygwin and MinGW.

This commit is contained in:
Howard Chu 2004-01-15 21:27:32 +00:00
parent bb1a97544d
commit 1f6369f984

View File

@ -79,6 +79,12 @@ static int sizelimit = -1;
static char *def_tmpdir;
static char *def_urlpre;
#if defined(__CYGWIN__) || defined(__MINGW32__)
/* Turn off commandline globbing, otherwise you cannot search for
* attribute '*'
*/
int _CRT_glob = 0;
#endif
void
usage( void )