Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e4438fe1
Commit
e4438fe1
authored
May 29, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
May 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Fix unused variable warnings.
parent
20c24fd3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
add.c
dlls/wldap32/add.c
+7
-2
modify.c
dlls/wldap32/modify.c
+7
-2
No files found.
dlls/wldap32/add.c
View file @
e4438fe1
...
...
@@ -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.@)
*
...
...
dlls/wldap32/modify.c
View file @
e4438fe1
...
...
@@ -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.@)
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment