diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-10-05 21:54:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:07:49 -0500 |
commit | 55a7440a07396e31b6647b79576fb16e54cc183a (patch) | |
tree | 91b84b9a59f62d8755153c1c4a121613858a2db1 | |
parent | 93224076fce2c647e0a6dab2f9f2e1508b6a27cf (diff) | |
download | samba-55a7440a07396e31b6647b79576fb16e54cc183a.tar.gz samba-55a7440a07396e31b6647b79576fb16e54cc183a.tar.bz2 samba-55a7440a07396e31b6647b79576fb16e54cc183a.zip |
r25536: Fix path for messaging - this code path doesn't appear to have a test, otherwise it would've caused a crash in the testsuite earlier...
(This used to be commit 89c8fd8c02830051e0199e234cc3e3b15e8c9879)
-rw-r--r-- | source4/scripting/ejs/smbcalls_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/ejs/smbcalls_auth.c b/source4/scripting/ejs/smbcalls_auth.c index e5b1aab3c2..44059d7537 100644 --- a/source4/scripting/ejs/smbcalls_auth.c +++ b/source4/scripting/ejs/smbcalls_auth.c @@ -56,7 +56,7 @@ static int ejs_doauth(MprVarHandle eid, } else { /* Hope we can find the event context somewhere up there... */ ev = event_context_find(tmp_ctx); - msg = messaging_client_init(tmp_ctx, global_loadparm, ev); + msg = messaging_client_init(tmp_ctx, lp_messaging_path(tmp_ctx, global_loadparm), ev); } if (auth_types) { |