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

metze at samba.org metze at samba.org
Sat Jan 6 10:21:32 GMT 2007


Author: metze
Date: 2007-01-06 10:21:32 +0000 (Sat, 06 Jan 2007)
New Revision: 20588

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

Log:
handle extended operations in the ldb_next_request() call

metze
Modified:
   branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c	2007-01-06 10:15:02 UTC (rev 20587)
+++ branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c	2007-01-06 10:21:32 UTC (rev 20588)
@@ -408,6 +408,9 @@
 	case LDB_RENAME:
 		FIND_OP(module, rename);
 		return module->ops->rename(module, request);
+	case LDB_EXTENDED:
+		FIND_OP(module, extended);
+		return module->ops->extended(module, request);
 	case LDB_SEQUENCE_NUMBER:
 		FIND_OP(module, sequence_number);
 		return module->ops->sequence_number(module, request);



More information about the samba-cvs mailing list