blob: fb2442789c81021b55f0430e7455f95167bfced0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifdef USE_LDAP
#include "includes.h"
#include "lber.h"
#include "ldap.h"
extern int DEBUGLEVEL;
#else /* USE_LDAP */
/* this keeps fussy compilers happy */
void ldap_helper_dummy(void)
{}
#endif /* USE_LDAP */
|