]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
add missing space (ITS#4061)
authorPierangelo Masarati <ando@openldap.org>
Tue, 4 Oct 2005 10:04:42 +0000 (10:04 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 4 Oct 2005 10:04:42 +0000 (10:04 +0000)
CHANGES
servers/slapd/back-sql/schema-map.c

diff --git a/CHANGES b/CHANGES
index 73261408d57576b7fb7e478f0d65e3d8e433009c..c2c244ecb91e794e630e98d4e060b723a2c9e3cd 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,7 @@ OpenLDAP 2.2.29 Engineering
        Fixed back-bdb/hdb/ldbm modrdn permission checks (ITS#2757)
        Fixed back-bdb/hdb pointer/integer size warnings (ITS#4015)
        Fixed back-hdb slapcat EntryInfo cache growth (ITS#4010)
+       Fixed back-sql missing space in delete statement (ITS#4061)
        Fixed liblber sb_dgram_read length (ITS#4046)
        Fixed libldap memory leaks (ITS#4048, 4052, 4053)
 
index be117c7595509d5db357402ad74ea8d0515d8ada..e789878da796f4412854c011f6b7a2359fd5e0ae 100644 (file)
@@ -229,7 +229,7 @@ backsql_add_sysmaps( backsql_oc_map_rec *oc_map )
                snprintf( tmp, sizeof(tmp), 
                        "DELETE FROM ldap_entry_objclasses "
                        "WHERE entry_id=(SELECT id FROM ldap_entries "
-                       "WHERE oc_map_id=%lu"
+                       "WHERE oc_map_id=%lu "
                        "AND keyval=?) AND oc_name=?",
                        oc_map->bom_id );
                at_map->bam_delete_proc = ch_strdup( tmp );