mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
ITS#2922 disable argument globbing under Cygwin and MinGW.
This commit is contained in:
parent
bb1a97544d
commit
1f6369f984
@ -79,6 +79,12 @@ static int sizelimit = -1;
|
|||||||
static char *def_tmpdir;
|
static char *def_tmpdir;
|
||||||
static char *def_urlpre;
|
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
|
void
|
||||||
usage( void )
|
usage( void )
|
||||||
|
Loading…
Reference in New Issue
Block a user