Author: idra
Date: 2004-11-14 14:24:48 +0000 (Sun, 14 Nov 2004)
New Revision: 3732

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

Log:

keep skel up to date


Modified:
   branches/tmp/ldbPlugins/lib/ldb/modules/skel.c


Changeset:
Modified: branches/tmp/ldbPlugins/lib/ldb/modules/skel.c
===================================================================
--- branches/tmp/ldbPlugins/lib/ldb/modules/skel.c      2004-11-14 14:24:22 UTC 
(rev 3731)
+++ branches/tmp/ldbPlugins/lib/ldb/modules/skel.c      2004-11-14 14:24:48 UTC 
(rev 3732)
@@ -37,7 +37,7 @@
 /* close */
 static int skel_close(struct ldb_module *module)
 {
-       return ldb_next_close()
+       return ldb_next_close(module);
 }
 
 /* search */
@@ -55,13 +55,13 @@
 }
 
 /* add_record */
-static int skel_add_record(struct ldb_module *module, struct ldb_message *msg)
+static int skel_add_record(struct ldb_module *module, const struct ldb_message 
*msg)
 {
        return ldb_next_add_record(module, msg);
 }
 
 /* modify_record */
-static int skel_modify_record(struct ldb_module *module, struct ldb_message 
*msg)
+static int skel_modify_record(struct ldb_module *module, const struct 
ldb_message *msg)
 {
        return ldb_next_modify_record(module, msg);
 }
@@ -84,12 +84,12 @@
        return ldb_next_errstring(module);
 }
 
-static const char *skel_cache_free(struct ldb_module *module)
+static void skel_cache_free(struct ldb_module *module)
 {
-       return ldb_next_cache_free(module);
+       ldb_next_cache_free(module);
 }
 
-static const struct ldb_module skel_ops = {
+static const struct ldb_module_ops skel_ops = {
        "skel",
        skel_close, 
        skel_search,

Reply via email to