This is an automated email from the git hooks/post-receive script.
mreynolds pushed a change to branch 389-ds-base-1.3.7 in repository 389-ds-base.
from b4e727f Ticket 49441 - Import crashes with large indexed binary attributes new 231c28b Ticket 49441 - Import crashes - oneline fix
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ldap/servers/slapd/back-ldbm/index.c | 2 -- 1 file changed, 2 deletions(-)
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a commit to branch 389-ds-base-1.3.7 in repository 389-ds-base.
commit 231c28bcf123d72d4ee892fc32642aa0496a75d4 Author: William Brown firstyear@redhat.com Date: Tue Nov 7 17:09:18 2017 +1000
Ticket 49441 - Import crashes - oneline fix
Bug Description: index.c fails to compile.
Fix Description: Excess braces due to copy paste issue.
https://pagure.io/389-ds-base/issue/49441
Author: wibrown
Review by: oneline rule
(cherry picked from commit be4d7e5a82c1616317fa52968d2814e3f922254c) --- ldap/servers/slapd/back-ldbm/index.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/ldap/servers/slapd/back-ldbm/index.c b/ldap/servers/slapd/back-ldbm/index.c index a565db8..587f4d9 100644 --- a/ldap/servers/slapd/back-ldbm/index.c +++ b/ldap/servers/slapd/back-ldbm/index.c @@ -1778,7 +1778,6 @@ addordel_values( key.flags = DB_DBT_USERMEM; key.ulen = tmpbuflen; if (slapi_is_loglevel_set(LDAP_DEBUG_TRACE)) { - { char encbuf[BUFSIZ];
slapi_log_err(SLAPI_LOG_TRACE, "addordel_values", "%s_value("%s")\n", @@ -1943,7 +1942,6 @@ addordel_values_sv( key.ulen = tmpbuflen;
if (slapi_is_loglevel_set(LDAP_DEBUG_TRACE)) { - { char encbuf[BUFSIZ];
slapi_log_err(SLAPI_LOG_TRACE, "addordel_values_sv", "%s_value("%s")\n",
389-commits@lists.fedoraproject.org