summaryrefslogtreecommitdiffstats
path: root/ldap/servers/plugins/passthru/ptdebug.c
blob: 0f01c4a7bd87b893b03388307c7d972771eaa50d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** BEGIN COPYRIGHT BLOCK
 * Copyright 2001 Sun Microsystems, Inc.
 * Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
 * All rights reserved.
 * END COPYRIGHT BLOCK **/
/*
 * ptdebug.c - debugging-related code for Pass Through Authentication
 *
 */

#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include "passthru.h"

#ifdef _WIN32
int *module_ldap_debug = 0;

void plugin_init_debug_level(int *level_ptr)
{
	module_ldap_debug = level_ptr;
}
#endif