diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-13 10:58:48 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-13 10:58:48 +0000 |
commit | d4705378ce88d1bb2f787338c531998d37d078ef (patch) | |
tree | 5c69c190347bd71067203aa89f0e99db4bc50a38 /source4/ntvfs | |
parent | 8faa77f177833eeee245391840d06771f46e0136 (diff) | |
download | samba-d4705378ce88d1bb2f787338c531998d37d078ef.tar.gz samba-d4705378ce88d1bb2f787338c531998d37d078ef.tar.bz2 samba-d4705378ce88d1bb2f787338c531998d37d078ef.zip |
dcerpc over tcp in the samba4 server now works to some extent. It
needs quite a bit more work to get it finished. The biggest missing
feature is the lack of NTLMSSP which is needed for basic
authentication over tcp
(This used to be commit 9fb0f0369356909c99389e2cbc525be27c08793c)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/ipc/vfs_ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c index 04825ec632..a3b3ab19b7 100644 --- a/source4/ntvfs/ipc/vfs_ipc.c +++ b/source4/ntvfs/ipc/vfs_ipc.c @@ -240,7 +240,7 @@ static NTSTATUS ipc_open(struct request_context *req, union smb_open *oi) endpoint.type = ENDPOINT_SMB; endpoint.info.smb_pipe = p->pipe_name; - status = dcesrv_endpoint_connect(req->smb, &endpoint, &p->pipe_state); + status = dcesrv_endpoint_connect(&req->smb->dcesrv, &endpoint, &p->pipe_state); if (!NT_STATUS_IS_OK(status)) { talloc_destroy(mem_ctx); return status; |