mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
Fix for WIN32 mkdir
This commit is contained in:
parent
476547e7c1
commit
9b045fa734
1 changed files with 4 additions and 0 deletions
|
|
@ -46,6 +46,10 @@ struct ldif_info {
|
|||
ldap_pvt_thread_mutex_t li_mutex;
|
||||
};
|
||||
|
||||
#ifdef _WIN32
|
||||
#define mkdir(a,b) mkdir(a)
|
||||
#endif
|
||||
|
||||
#define LDIF ".ldif"
|
||||
|
||||
#define IX_DNL '{'
|
||||
|
|
|
|||
Loading…
Reference in a new issue