s4:local_password LDB module - fix typos
authorMatthias Dieter Wallnöfer <mdw@samba.org>
Sat, 30 Oct 2010 14:58:34 +0000 (16:58 +0200)
committerMatthias Dieter Wallnöfer <mdw@samba.org>
Sat, 30 Oct 2010 15:41:45 +0000 (15:41 +0000)
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sat Oct 30 15:41:46 UTC 2010 on sn-devel-104

source4/dsdb/samdb/ldb_modules/local_password.c

index 359a3d0e052c57c291ae4639aef2dc95a1a0486a..1a7b19d4423811c5fce51c1a4fa65d7f31577788 100644 (file)
@@ -301,7 +301,7 @@ static int lpdb_add_callback(struct ldb_request *req,
  * MODIFY
  ****************************************************************************/
 
-static int lpdb_modify_callabck(struct ldb_request *req,
+static int lpdb_modify_callback(struct ldb_request *req,
                                struct ldb_reply *ares);
 static int lpdb_mod_search_callback(struct ldb_request *req,
                                    struct ldb_reply *ares);
@@ -369,7 +369,7 @@ static int local_password_modify(struct ldb_module *module, struct ldb_request *
        ret = ldb_build_mod_req(&remote_req, ldb, ac,
                                remote_message,
                                req->controls,
-                               ac, lpdb_modify_callabck,
+                               ac, lpdb_modify_callback,
                                req);
        LDB_REQ_SET_LOCATION(remote_req);
        if (ret != LDB_SUCCESS) {
@@ -381,7 +381,7 @@ static int local_password_modify(struct ldb_module *module, struct ldb_request *
 
 /* On a modify, we don't have the objectGUID handy, so we need to
  * search our DN for it */
-static int lpdb_modify_callabck(struct ldb_request *req,
+static int lpdb_modify_callback(struct ldb_request *req,
                                struct ldb_reply *ares)
 {
        struct ldb_context *ldb;
@@ -546,7 +546,7 @@ static int lpdb_mod_search_callback(struct ldb_request *req,
  * DELETE
  ****************************************************************************/
 
-static int lpdb_delete_callabck(struct ldb_request *req,
+static int lpdb_delete_callback(struct ldb_request *req,
                                struct ldb_reply *ares);
 static int lpdb_del_search_callback(struct ldb_request *req,
                                    struct ldb_reply *ares);
@@ -583,7 +583,7 @@ static int local_password_delete(struct ldb_module *module,
        ret = ldb_build_del_req(&remote_req, ldb, ac,
                                req->op.del.dn,
                                req->controls,
-                               ac, lpdb_delete_callabck,
+                               ac, lpdb_delete_callback,
                                req);
        LDB_REQ_SET_LOCATION(remote_req);
        if (ret != LDB_SUCCESS) {
@@ -595,7 +595,7 @@ static int local_password_delete(struct ldb_module *module,
 
 /* On a modify, we don't have the objectGUID handy, so we need to
  * search our DN for it */
-static int lpdb_delete_callabck(struct ldb_request *req,
+static int lpdb_delete_callback(struct ldb_request *req,
                                struct ldb_reply *ares)
 {
        struct ldb_context *ldb;