In ldap_pvt_sasl_init() treat subsequent invocations as no-ops, not error.

This commit is contained in:
Luke Howard 2000-01-16 01:29:15 +00:00
parent 80f85e972d
commit 6a06fb7fba

View File

@ -407,7 +407,7 @@ int ldap_pvt_sasl_init( void )
static int sasl_initialized = 0;
if ( sasl_initialized ) {
return -1;
return 0;
}
#ifndef CSRIMALLOC
sasl_set_alloc( ber_memalloc, ber_memcalloc, ber_memrealloc, ber_memfree );