diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-08-01 17:33:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:30:15 -0500 |
commit | fc585709402e6840a5dd16c9a3fb22792ddacf3e (patch) | |
tree | 7dab1295aaf765ea433dff959b58b016e4433cb9 /source4/scripting | |
parent | 6f0e5b59538b99decc186e899bef65d4c02e41bb (diff) | |
download | samba-fc585709402e6840a5dd16c9a3fb22792ddacf3e.tar.gz samba-fc585709402e6840a5dd16c9a3fb22792ddacf3e.tar.bz2 samba-fc585709402e6840a5dd16c9a3fb22792ddacf3e.zip |
r8887: fixed the irpc error that caused ia64 to fail the LOCAL-IRPC test
(This used to be commit ce9a262d379b946717d0d4be4731c837e6f7373d)
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/ejs/smbcalls_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/ejs/smbcalls_rpc.c b/source4/scripting/ejs/smbcalls_rpc.c index 223ac5c972..8a08ba0d8d 100644 --- a/source4/scripting/ejs/smbcalls_rpc.c +++ b/source4/scripting/ejs/smbcalls_rpc.c @@ -219,7 +219,7 @@ static int ejs_irpc_call(int eid, struct MprVar *io, /* make the actual calls */ for (i=0;i<count;i++) { reqs[i] = irpc_call_send(p->msg_ctx, p->dest_ids[i], - iface, callnum, ptr); + iface, callnum, ptr, ptr); if (reqs[i] == NULL) { status = NT_STATUS_NO_MEMORY; goto done; |