mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-12 23:33:18 -05:00
ITS#2922 disable argument globbing under Cygwin and MinGW.
This commit is contained in:
parent
bb1a97544d
commit
1f6369f984
1 changed files with 6 additions and 0 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
Loading…
Reference in a new issue