From 2fa50ab671ba4a7e552e001f0dfde3a7cc330f8e Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 9 Aug 2005 03:09:47 +0000 Subject: r9222: Rename smb_tree_connect() to smb_raw_tcon() to match other raw function names. (This used to be commit 26b191b3c9529b2dae5d004819dab46657064408) --- source4/libcli/composite/connect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/libcli/composite') diff --git a/source4/libcli/composite/connect.c b/source4/libcli/composite/connect.c index d6d87380ec..adac9bcf67 100644 --- a/source4/libcli/composite/connect.c +++ b/source4/libcli/composite/connect.c @@ -77,7 +77,7 @@ static NTSTATUS connect_tcon(struct composite_context *c, struct connect_state *state = talloc_get_type(c->private, struct connect_state); NTSTATUS status; - status = smb_tree_connect_recv(state->req, c, state->io_tcon); + status = smb_raw_tcon_recv(state->req, c, state->io_tcon); NT_STATUS_NOT_OK_RETURN(status); io->out.tree->tid = state->io_tcon->tconx.out.tid; @@ -134,7 +134,7 @@ static NTSTATUS connect_session_setup(struct composite_context *c, state->io_tcon->tconx.in.device = io->in.service_type; } - state->req = smb_tree_connect_send(io->out.tree, state->io_tcon); + state->req = smb_raw_tcon_send(io->out.tree, state->io_tcon); NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = request_handler; -- cgit