r25249: Thanks to Andrew Kroeger for pointing out this silly typo (calling
authorAndrew Bartlett <abartlet@samba.org>
Thu, 20 Sep 2007 07:51:08 +0000 (07:51 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 20:06:59 +0000 (15:06 -0500)
end_transaction in delete_tranaction would be very much the wrong
thing to do) in the update_keytab module.

Andrew Bartlett
(This used to be commit aad9545ca12bc8a3aeaf5cc870d137d89c34bb39)

source4/dsdb/samdb/ldb_modules/update_keytab.c

index 2b6a0152f55fb70f25e432b6e433e755c8077152..8fb1a0a25f270a57645c488b38710c3c81492b5f 100644 (file)
@@ -179,7 +179,7 @@ static int update_kt_del_trans(struct ldb_module *module)
        talloc_free(data->changed_dns);
        data->changed_dns = NULL;
 
-       return ldb_next_end_trans(module);
+       return ldb_next_del_trans(module);
 }
 
 static int update_kt_init(struct ldb_module *module)