diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-26 02:05:11 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-26 02:05:11 +0200 |
commit | 1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab (patch) | |
tree | b70824f51bde175a0469d377a1783f7fc6eb8823 /source4/scripting/libjs | |
parent | c17166fb3d9260d0c02e3f9f559413acde5ce048 (diff) | |
download | samba-1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab.tar.gz samba-1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab.tar.bz2 samba-1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab.zip |
Remove unused EJS code.
(This used to be commit 3b70a3de4aa63bd6c325fd620c71bd6111d3d2b8)
Diffstat (limited to 'source4/scripting/libjs')
-rw-r--r-- | source4/scripting/libjs/auth.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/source4/scripting/libjs/auth.js b/source4/scripting/libjs/auth.js deleted file mode 100644 index 3fe81d0ea7..0000000000 --- a/source4/scripting/libjs/auth.js +++ /dev/null @@ -1,18 +0,0 @@ -/* - auth js library functions - Copyright Andrew Tridgell 2005 - released under the GNU GPL version 3 or later -*/ - - -/* - get a list of domains for SWAT authentication -*/ -function getDomainList() -{ - var ret = new Array(2); - var lp = loadparm_init(); - ret[0] = "System User"; - ret[1] = lp.get("workgroup"); - return ret; -} |