summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/update_keytab.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-09-20 07:51:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:06:59 -0500
commitafb0849afe58e1ba43e84c342342d924c502001d (patch)
treeb54b4b2268a3235222f8fc5e41ab5a0bb672cda7 /source4/dsdb/samdb/ldb_modules/update_keytab.c
parente0ea2c9b9fcb681b60df8baf047bc99724f9426a (diff)
downloadsamba-afb0849afe58e1ba43e84c342342d924c502001d.tar.gz
samba-afb0849afe58e1ba43e84c342342d924c502001d.tar.bz2
samba-afb0849afe58e1ba43e84c342342d924c502001d.zip
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)
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/update_keytab.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/update_keytab.c2
1 files changed, 1 insertions, 1 deletions
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)