mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
ITS#4039
This commit is contained in:
parent
37f4e80929
commit
9213019114
1 changed files with 3 additions and 4 deletions
|
|
@ -35,13 +35,10 @@ perl_back_initialize(
|
|||
BackendInfo *bi
|
||||
)
|
||||
{
|
||||
char *embedding[] = { "", "-e", "0" };
|
||||
|
||||
|
||||
bi->bi_open = perl_back_open;
|
||||
bi->bi_config = 0;
|
||||
bi->bi_close = perl_back_close;
|
||||
bi->bi_destroy = perl_back_destroy;
|
||||
bi->bi_destroy = 0;
|
||||
|
||||
bi->bi_db_init = perl_back_db_init;
|
||||
bi->bi_db_config = perl_back_db_config;
|
||||
|
|
@ -74,6 +71,8 @@ perl_back_open(
|
|||
BackendInfo *bi
|
||||
)
|
||||
{
|
||||
char *embedding[] = { "", "-e", "0" };
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE, "perl backend open\n", 0, 0, 0 );
|
||||
|
||||
if( PERL_INTERPRETER != NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue