Commit e4438fe1 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

wldap32: Fix unused variable warnings.

parent 20c24fd3
......@@ -31,8 +31,9 @@
#ifdef HAVE_LDAP_H
#include <ldap.h>
static LDAPMod *nullattrs[] = { NULL };
#else
#endif
#ifndef LDAP_NOT_SUPPORTED
#define LDAP_NOT_SUPPORTED 0x5c
#endif
......@@ -41,6 +42,10 @@ static LDAPMod *nullattrs[] = { NULL };
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
#ifdef HAVE_LDAP
static LDAPMod *nullattrs[] = { NULL };
#endif
/***********************************************************************
* ldap_addA (WLDAP32.@)
*
......
......@@ -31,8 +31,9 @@
#ifdef HAVE_LDAP_H
#include <ldap.h>
static LDAPMod *nullmods[] = { NULL };
#else
#endif
#ifndef LDAP_NOT_SUPPORTED
#define LDAP_NOT_SUPPORTED 0x5c
#endif
......@@ -41,6 +42,10 @@ static LDAPMod *nullmods[] = { NULL };
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
#ifdef HAVE_LDAP
static LDAPMod *nullmods[] = { NULL };
#endif
/***********************************************************************
* ldap_modifyA (WLDAP32.@)
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment