wldap32: Fix unused variable warnings.
This commit is contained in:
parent
20c24fd3a2
commit
e4438fe14f
|
@ -31,8 +31,9 @@
|
||||||
|
|
||||||
#ifdef HAVE_LDAP_H
|
#ifdef HAVE_LDAP_H
|
||||||
#include <ldap.h>
|
#include <ldap.h>
|
||||||
static LDAPMod *nullattrs[] = { NULL };
|
#endif
|
||||||
#else
|
|
||||||
|
#ifndef LDAP_NOT_SUPPORTED
|
||||||
#define LDAP_NOT_SUPPORTED 0x5c
|
#define LDAP_NOT_SUPPORTED 0x5c
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -41,6 +42,10 @@ static LDAPMod *nullattrs[] = { NULL };
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
||||||
|
|
||||||
|
#ifdef HAVE_LDAP
|
||||||
|
static LDAPMod *nullattrs[] = { NULL };
|
||||||
|
#endif
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* ldap_addA (WLDAP32.@)
|
* ldap_addA (WLDAP32.@)
|
||||||
*
|
*
|
||||||
|
|
|
@ -31,8 +31,9 @@
|
||||||
|
|
||||||
#ifdef HAVE_LDAP_H
|
#ifdef HAVE_LDAP_H
|
||||||
#include <ldap.h>
|
#include <ldap.h>
|
||||||
static LDAPMod *nullmods[] = { NULL };
|
#endif
|
||||||
#else
|
|
||||||
|
#ifndef LDAP_NOT_SUPPORTED
|
||||||
#define LDAP_NOT_SUPPORTED 0x5c
|
#define LDAP_NOT_SUPPORTED 0x5c
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -41,6 +42,10 @@ static LDAPMod *nullmods[] = { NULL };
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
||||||
|
|
||||||
|
#ifdef HAVE_LDAP
|
||||||
|
static LDAPMod *nullmods[] = { NULL };
|
||||||
|
#endif
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* ldap_modifyA (WLDAP32.@)
|
* ldap_modifyA (WLDAP32.@)
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue