debug.c 443 B

1234567891011121314151617181920
  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. /* debug.c - syntax debug stuff */
  7. #include <stdio.h>
  8. #include <string.h>
  9. #include <sys/types.h>
  10. #include "syntax.h"
  11. #ifdef _WIN32
  12. int *module_ldap_debug = 0;
  13. void plugin_init_debug_level(int *level_ptr)
  14. {
  15. module_ldap_debug = level_ptr;
  16. }
  17. #endif