svn commit: samba r7571 - in branches/SAMBA_4_0/source/lib/ldb/common: .

tridge at samba.org tridge at samba.org
Tue Jun 14 07:48:45 GMT 2005


Author: tridge
Date: 2005-06-14 07:48:44 +0000 (Tue, 14 Jun 2005)
New Revision: 7571

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7571

Log:
fixed the generation of the filter string for extended filters

Modified:
   branches/SAMBA_4_0/source/lib/ldb/common/ldb_parse.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/common/ldb_parse.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/common/ldb_parse.c	2005-06-14 07:14:59 UTC (rev 7570)
+++ branches/SAMBA_4_0/source/lib/ldb/common/ldb_parse.c	2005-06-14 07:48:44 UTC (rev 7571)
@@ -483,7 +483,7 @@
 	case LDB_OP_EXTENDED:
 		s = ldb_binary_encode(mem_ctx, tree->u.extended.value);
 		if (s == NULL) return NULL;
-		ret = talloc_asprintf(mem_ctx, "(%s%s%s%s=%s)", 
+		ret = talloc_asprintf(mem_ctx, "(%s%s%s%s:=%s)", 
 				      tree->u.extended.attr?tree->u.extended.attr:"", 
 				      tree->u.extended.dnAttributes?":dn":"",
 				      tree->u.extended.rule_id?":":"", 



More information about the samba-cvs mailing list