From: Pierangelo Masarati Date: Sun, 6 Aug 2006 12:36:24 +0000 (+0000) Subject: import fix to ITS#4633 (though it was HEAD only when first fixed) X-Git-Tag: OPENLDAP_REL_ENG_2_3_26~12 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7ff829d669781c65d20acc9ecb944ab52b75775f;p=openldap import fix to ITS#4633 (though it was HEAD only when first fixed) --- diff --git a/CHANGES b/CHANGES index a91fd8582a..69f61b6c77 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,7 @@ OpenLDAP 2.3 Change Log OpenLDAP 2.3.26 Engineering + Fixed slapd incorrect rebuilding of replica URI (ITS#4633) Fixed back-monitor operations order via callbacks (ITS#4631) OpenLDAP 2.3.25 Release diff --git a/servers/slapd/bconfig.c b/servers/slapd/bconfig.c index 6b3a4ccbf6..f57351ff65 100644 --- a/servers/slapd/bconfig.c +++ b/servers/slapd/bconfig.c @@ -2507,7 +2507,7 @@ config_replica(ConfigArgs *c) { } replicauri = ch_malloc( len ); replicahost = lutil_strcopy( replicauri, ludp->lud_scheme ); - replicahost = lutil_strcopy( replicauri, "://" ); + replicahost = lutil_strcopy( replicahost, "://" ); if (ludp->lud_port == LDAP_PORT) { strcpy( replicahost, ludp->lud_host ); } else {