From afb0849afe58e1ba43e84c342342d924c502001d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 20 Sep 2007 07:51:08 +0000 Subject: r25249: Thanks to Andrew Kroeger for pointing out this silly typo (calling 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/dsdb/samdb/ldb_modules/update_keytab.c b/source4/dsdb/samdb/ldb_modules/update_keytab.c index 2b6a0152f5..8fb1a0a25f 100644 --- a/source4/dsdb/samdb/ldb_modules/update_keytab.c +++ b/source4/dsdb/samdb/ldb_modules/update_keytab.c @@ -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) -- cgit