Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c6e45649
Commit
c6e45649
authored
Feb 05, 2020
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Feb 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Define a debug channel only when we are using it.
Signed-off-by:
Gerald Pfeifer
<
gerald@pfeifer.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ce0f263a
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
24 additions
and
2 deletions
+24
-2
add.c
dlls/wldap32/add.c
+1
-1
ber.c
dlls/wldap32/ber.c
+2
-0
bind.c
dlls/wldap32/bind.c
+2
-0
compare.c
dlls/wldap32/compare.c
+2
-0
control.c
dlls/wldap32/control.c
+2
-0
delete.c
dlls/wldap32/delete.c
+2
-0
dn.c
dlls/wldap32/dn.c
+2
-0
modify.c
dlls/wldap32/modify.c
+1
-1
modrdn.c
dlls/wldap32/modrdn.c
+2
-0
option.c
dlls/wldap32/option.c
+2
-0
parse.c
dlls/wldap32/parse.c
+2
-0
rename.c
dlls/wldap32/rename.c
+2
-0
search.c
dlls/wldap32/search.c
+2
-0
No files found.
dlls/wldap32/add.c
View file @
c6e45649
...
...
@@ -34,9 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#ifdef HAVE_LDAP
static
LDAPMod
*
nullattrs
[]
=
{
NULL
};
#endif
...
...
dlls/wldap32/ber.c
View file @
c6e45649
...
...
@@ -26,7 +26,9 @@
#include "winldap.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
#ifndef LBER_ERROR
# define LBER_ERROR (~0U)
...
...
dlls/wldap32/bind.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_bindA (WLDAP32.@)
...
...
dlls/wldap32/compare.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_compareA (WLDAP32.@)
...
...
dlls/wldap32/control.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_control_freeA (WLDAP32.@)
...
...
dlls/wldap32/delete.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_deleteA (WLDAP32.@)
...
...
dlls/wldap32/dn.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_dn2ufnA (WLDAP32.@)
...
...
dlls/wldap32/modify.c
View file @
c6e45649
...
...
@@ -34,9 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#ifdef HAVE_LDAP
static
LDAPMod
*
nullmods
[]
=
{
NULL
};
#endif
...
...
dlls/wldap32/modrdn.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_modrdnA (WLDAP32.@)
...
...
dlls/wldap32/option.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_get_optionA (WLDAP32.@)
...
...
dlls/wldap32/parse.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_parse_extended_resultA (WLDAP32.@)
...
...
dlls/wldap32/rename.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_rename_extA (WLDAP32.@)
...
...
dlls/wldap32/search.c
View file @
c6e45649
...
...
@@ -34,7 +34,9 @@
#include "wldap32.h"
#include "wine/debug.h"
#ifdef HAVE_LDAP
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
#endif
/***********************************************************************
* ldap_searchA (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