version 1.58.2.8, 2008/04/14 22:46:48
|
version 1.58.2.9, 2008/07/09 23:36:23
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/servers/slapd/back-meta/init.c,v 1.58.2.7 2008/02/12 00:25:47 quanah Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/back-meta/init.c,v 1.58.2.8 2008/04/14 22:46:48 quanah Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 1999-2008 The OpenLDAP Foundation. |
* Copyright 1999-2008 The OpenLDAP Foundation. |
Line 383 meta_back_db_destroy(
|
Line 383 meta_back_db_destroy(
|
if ( META_BACK_TGT_QUARANTINE( mt ) ) { |
if ( META_BACK_TGT_QUARANTINE( mt ) ) { |
if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num ) |
if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num ) |
{ |
{ |
slap_retry_info_destroy( &mt->mt_quarantine ); |
mi->mi_ldap_extra->retry_info_destroy( &mt->mt_quarantine ); |
} |
} |
|
|
ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex ); |
ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex ); |
Line 411 meta_back_db_destroy(
|
Line 411 meta_back_db_destroy(
|
} |
} |
|
|
if ( META_BACK_QUARANTINE( mi ) ) { |
if ( META_BACK_QUARANTINE( mi ) ) { |
slap_retry_info_destroy( &mi->mi_quarantine ); |
mi->mi_ldap_extra->retry_info_destroy( &mi->mi_quarantine ); |
} |
} |
} |
} |
|
|