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

abartlet at samba.org abartlet at samba.org
Thu Jan 12 03:07:05 GMT 2006


Author: abartlet
Date: 2006-01-12 03:07:04 +0000 (Thu, 12 Jan 2006)
New Revision: 12860

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

Log:
Remove unused function.  (we handle this in the password_hash module).

Andrew Bartlett

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


Changeset:
Modified: branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/samba3sam.c
===================================================================
--- branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/samba3sam.c	2006-01-12 03:06:14 UTC (rev 12859)
+++ branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/samba3sam.c	2006-01-12 03:07:04 UTC (rev 12860)
@@ -46,28 +46,6 @@
 /* In Samba4 but not in Samba3:
 */
 
-static void generate_hashes (struct ldb_module *module, const char *local_attr,	const struct ldb_message *local, struct ldb_message *remote_mp,	struct ldb_message *remote_fb)
-{
-	const char *upwd = ldb_msg_find_string(local, local_attr, NULL);
-	struct ldb_val val;
-
-	if (!upwd)
-		return;
-
-	ldb_msg_add_string(remote_fb, local_attr, upwd);
-
-	val.length = 16;
-	val.data = talloc_zero_size(module, val.length);
-
-	E_md4hash(upwd, val.data);
-	ldb_msg_add_value(remote_mp, "sambaNTPassword", &val);
-			
-	val.data = talloc_zero_size(module, val.length);
-	E_deshash(upwd, val.data);
-	ldb_msg_add_value(remote_mp, "sambaLMPassword", &val);
-}
-
-
 static struct ldb_message_element *generate_primaryGroupID(struct ldb_module *module, TALLOC_CTX *ctx, const char *attr, const struct ldb_message *remote)
 {
 	struct ldb_message_element *el;



More information about the samba-cvs mailing list