1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-07 20:23:50 +03:00

r8639: moved loadparm calls into an ejs object

This commit is contained in:
Andrew Tridgell
2005-07-20 07:20:03 +00:00
committed by Gerald (Jerry) Carter
parent a978484738
commit 2dc493eea6
8 changed files with 42 additions and 20 deletions

View File

@@ -11,7 +11,8 @@
function getDomainList()
{
var ret = new Array(2);
var lp = loadparm_init();
ret[0] = "System User";
ret[1] = lpGet("workgroup");
ret[1] = lp.get("workgroup");
return ret;
}