mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
* OpenLDAP 2.0 is no longer actively maintained by the OpenLDAP Project. * You are strongly encouraged to update to OpenLDAP 2.1 * Port maintainers: Please respect the default in bsd.port.mk * I plan to remove OpenLDAP 2.0 from the FreeBSD ports tree May 2004 - Update net/openldap21-client and net/openldap21-server to version 2.1.23 - Update net/openldap22-client and net/openldap22-server to version 2.2.2.b, fix ITS#2747 from CVS - some fixes for net/openldap20-server from CVS, seems like there won't be a 2.0.28 release anymore - remove conflict with deleted port net/openldap12 - use PORTDOCS - use USE_OPENSSL - don't use _REENTRANT - add a deinstall message PR: 58278 Submitted by: me Approved by: marcus (mentor)
19 lines
589 B
C
19 lines
589 B
C
--- servers/slapd/backend.c Mon Oct 6 16:57:29 2003
|
|
+++ servers/slapd/backend.c Sun Oct 19 15:33:56 2003
|
|
@@ -244,8 +244,6 @@
|
|
int i;
|
|
int rc = 0;
|
|
|
|
- init_syncrepl();
|
|
-
|
|
if( ! ( nBackendDB > 0 ) ) {
|
|
/* no databases */
|
|
#ifdef NEW_LOGGING
|
|
@@ -377,6 +375,7 @@
|
|
if ( backendDB[i].syncinfo != NULL ) {
|
|
syncinfo_t *si = ( syncinfo_t * ) backendDB[i].syncinfo;
|
|
si->be = &backendDB[i];
|
|
+ init_syncrepl(si);
|
|
ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
|
|
ldap_pvt_runqueue_insert( &syncrepl_rq, si->interval,
|
|
do_syncrepl, (void *) backendDB[i].syncinfo );
|