summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-08-23 02:11:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:34:23 -0500
commitd857d1a9650efdf26b49e3939721dfc6fc0a1edb (patch)
tree1c2ea0ac3fcf048670d2c99414a4c0efdc715a5b /source4/scripting
parent185adae2f90ed187c7c4e0d415defb35b9c78722 (diff)
downloadsamba-d857d1a9650efdf26b49e3939721dfc6fc0a1edb.tar.gz
samba-d857d1a9650efdf26b49e3939721dfc6fc0a1edb.tar.bz2
samba-d857d1a9650efdf26b49e3939721dfc6fc0a1edb.zip
r9500: userAuth() takes a creds object, not a general object now ...
(This used to be commit 57e6eb9c66ba539a593524d8cfd8836a840ac1ba)
Diffstat (limited to 'source4/scripting')
-rw-r--r--source4/scripting/ejs/smbcalls_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/ejs/smbcalls_auth.c b/source4/scripting/ejs/smbcalls_auth.c
index 06d17ed01a..ef3b86a8b4 100644
--- a/source4/scripting/ejs/smbcalls_auth.c
+++ b/source4/scripting/ejs/smbcalls_auth.c
@@ -122,7 +122,7 @@ static int ejs_userAuth(MprVarHandle eid, int argc, struct MprVar **argv)
username = cli_credentials_get_username(creds);
password = cli_credentials_get_password(creds);
domain = cli_credentials_get_domain(creds);
- remote_host = mprToString(mprGetProperty(argv[0], "rhost", NULL));
+ remote_host = cli_credentials_get_workstation(creds);
if (username == NULL || password == NULL || domain == NULL) {
mpr_Return(eid, mprCreateUndefinedVar());