Author: mkhl Date: 2006-07-23 13:30:25 +0000 (Sun, 23 Jul 2006) New Revision: 17204
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17204 Log: Adapt samba3sam as well. Martin Modified: branches/SOC/mkhl/samdb-map/ldb_modules/samba3sam.c Changeset: Modified: branches/SOC/mkhl/samdb-map/ldb_modules/samba3sam.c =================================================================== --- branches/SOC/mkhl/samdb-map/ldb_modules/samba3sam.c 2006-07-23 12:53:33 UTC (rev 17203) +++ branches/SOC/mkhl/samdb-map/ldb_modules/samba3sam.c 2006-07-23 13:30:25 UTC (rev 17204) @@ -881,13 +881,13 @@ /* the init function */ int ldb_samba3sam_module_init(void) { - struct ldb_module_ops ops = ldb_map_get_ops(); - samba3sam_ops.add = ops.add; - samba3sam_ops.modify = ops.modify; - samba3sam_ops.del = ops.del; - samba3sam_ops.rename = ops.rename; - samba3sam_ops.search = ops.search; - samba3sam_ops.async_wait = ops.async_wait; + struct ldb_module_ops ops = ldb_map_get_ops(); + samba3sam_ops.add = ops.add; + samba3sam_ops.modify = ops.modify; + samba3sam_ops.del = ops.del; + samba3sam_ops.rename = ops.rename; + samba3sam_ops.search = ops.search; + samba3sam_ops.wait = ops.wait; - return ldb_register_module(&samba3sam_ops); + return ldb_register_module(&samba3sam_ops); }
