cb_debug.c 479 B

1234567891011121314151617181920212223
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright 2001 Sun Microsystems, Inc.
  3. * Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
  4. * All rights reserved.
  5. * END COPYRIGHT BLOCK **/
  6. /*
  7. * cb_debug.c - debugging-related code for Chaining backend
  8. */
  9. #include <stdio.h>
  10. #include <string.h>
  11. #include <sys/types.h>
  12. #include "cb.h"
  13. #ifdef _WIN32
  14. int *module_ldap_debug = 0;
  15. void plugin_init_debug_level(int *level_ptr)
  16. {
  17. module_ldap_debug = level_ptr;
  18. }
  19. #endif