Fix mutex initialization. new init function only has one argument.

This commit is contained in:
Kurt Zeilenga 1999-02-04 18:20:26 +00:00
parent e15e035bbb
commit 72400d11fc

View File

@ -46,8 +46,7 @@ perl_back_init(
perl_parse(perl_interpreter, NULL, 3, embedding, (char **)NULL);
perl_run(perl_interpreter);
ldap_pvt_thread_mutex_init( &perl_interpreter_mutex,
ldap_pvt_thread_mutexattr_default );
ldap_pvt_thread_mutex_init( &perl_interpreter_mutex );
}
be->be_private = (PerlBackend *) ch_malloc( sizeof(PerlBackend) );