diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-09-20 07:51:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:06:59 -0500 |
commit | afb0849afe58e1ba43e84c342342d924c502001d (patch) | |
tree | b54b4b2268a3235222f8fc5e41ab5a0bb672cda7 | |
parent | e0ea2c9b9fcb681b60df8baf047bc99724f9426a (diff) | |
download | samba-afb0849afe58e1ba43e84c342342d924c502001d.tar.gz samba-afb0849afe58e1ba43e84c342342d924c502001d.tar.xz 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)
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/update_keytab.c | 2 |
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) |