Fix bug # 177778 - ldap_set_option( NULL, ... ) resets ldap_debug to zero.

This commit is contained in:
mcs%netscape.com 2002-11-15 21:01:43 +00:00
Родитель 0f8e5bbf33
Коммит e36dfed96b
2 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -46,7 +46,7 @@ static char copyright[] = "@(#) Copyright (c) 1995 Regents of the University of
#endif
#ifdef LDAP_DEBUG
int ldap_debug;
int ldap_debug = 0;
#endif
#ifdef _WINDOWS

Просмотреть файл

@ -85,10 +85,6 @@ ldap_set_option( LDAP *ld, int option, const void *optdata )
*/
if ( ld == NULL ) {
ld = &nsldapi_ld_defaults;
#ifdef LDAP_DEBUG
ldap_debug = 0;
#endif
}
/*