Author: jelmer Date: 2007-10-05 21:54:34 +0000 (Fri, 05 Oct 2007) New Revision: 25536
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25536 Log: 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... Modified: branches/SAMBA_4_0/ branches/SAMBA_4_0/source/scripting/ejs/smbcalls_auth.c Changeset: Property changes on: branches/SAMBA_4_0 ___________________________________________________________________ Name: bzr:revision-info ...skipped... Name: bzr:revision-id:v3-trunk0 ...skipped... Modified: branches/SAMBA_4_0/source/scripting/ejs/smbcalls_auth.c =================================================================== --- branches/SAMBA_4_0/source/scripting/ejs/smbcalls_auth.c 2007-10-05 21:51:47 UTC (rev 25535) +++ branches/SAMBA_4_0/source/scripting/ejs/smbcalls_auth.c 2007-10-05 21:54:34 UTC (rev 25536) @@ -56,7 +56,7 @@ } 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) {
