svn commit: samba r16265 - in branches/SAMBA_4_0/source/scripting/libjs: .

abartlet at samba.org abartlet at samba.org
Thu Jun 15 18:25:41 GMT 2006


Author: abartlet
Date: 2006-06-15 18:25:41 +0000 (Thu, 15 Jun 2006)
New Revision: 16265

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

Log:
Fix 'newuser' command.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/scripting/libjs/provision.js


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/libjs/provision.js
===================================================================
--- branches/SAMBA_4_0/source/scripting/libjs/provision.js	2006-06-15 18:04:24 UTC (rev 16264)
+++ branches/SAMBA_4_0/source/scripting/libjs/provision.js	2006-06-15 18:25:41 UTC (rev 16265)
@@ -654,7 +654,7 @@
 	/* find the DNs for the domain and the domain users group */
 	var attrs = new Array("defaultNamingContext");
 	res = ldb.search("defaultNamingContext=*", "", ldb.SCOPE_BASE, attrs);
-	assert(res.length == 1 && res[0].defaultNamingContext != undefined)
+	assert(res.length == 1 && res[0].defaultNamingContext != undefined);
 	var domain_dn = res[0].defaultNamingContext;
 	assert(domain_dn != undefined);
 	var dom_users = searchone(ldb, domain_dn, "name=Domain Users", "dn");



More information about the samba-cvs mailing list