r9500: userAuth() takes a creds object, not a general object now ...
authorAndrew Tridgell <tridge@samba.org>
Tue, 23 Aug 2005 02:11:49 +0000 (02:11 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:34:23 +0000 (13:34 -0500)
source/scripting/ejs/smbcalls_auth.c

index 06d17ed01a22a7b2d0fbc4e52de76a294611844c..ef3b86a8b4818631fd31e15187c4db8159edc4bc 100644 (file)
@@ -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());