svn commit: samba r25249 - in branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules: .

abartlet at samba.org abartlet at samba.org
Thu Sep 20 07:51:10 GMT 2007


Author: abartlet
Date: 2007-09-20 07:51:08 +0000 (Thu, 20 Sep 2007)
New Revision: 25249

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25249

Log:
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

Modified:
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/update_keytab.c


Changeset:
Modified: branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/update_keytab.c
===================================================================
--- branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/update_keytab.c	2007-09-20 06:52:30 UTC (rev 25248)
+++ branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/update_keytab.c	2007-09-20 07:51:08 UTC (rev 25249)
@@ -179,7 +179,7 @@
 	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)



More information about the samba-cvs mailing list