From 159b0517ed60a8951ff8aca9696f6e4b67720c28 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 14 Aug 2013 11:48:40 +0200 Subject: [PATCH] s3:libsmb: make cli_ulogoff_send/recv static Signed-off-by: Stefan Metzmacher Reviewed-by: Jeremy Allison (cherry picked from commit 1d7bdfc4feac35d92b003c3c78f502897ecc5d4e) --- source3/libsmb/cliconnect.c | 4 ++-- source3/libsmb/proto.h | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index 0e5f8a99fe2..f64f37eb07e 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -2245,7 +2245,7 @@ struct cli_ulogoff_state { static void cli_ulogoff_done(struct tevent_req *subreq); -struct tevent_req *cli_ulogoff_send(TALLOC_CTX *mem_ctx, +static struct tevent_req *cli_ulogoff_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli) { @@ -2288,7 +2288,7 @@ static void cli_ulogoff_done(struct tevent_req *subreq) tevent_req_done(req); } -NTSTATUS cli_ulogoff_recv(struct tevent_req *req) +static NTSTATUS cli_ulogoff_recv(struct tevent_req *req) { return tevent_req_simple_recv_ntstatus(req); } diff --git a/source3/libsmb/proto.h b/source3/libsmb/proto.h index 648bddaddc5..a1389ff4655 100644 --- a/source3/libsmb/proto.h +++ b/source3/libsmb/proto.h @@ -54,10 +54,6 @@ struct tevent_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli); NTSTATUS cli_session_setup_guest_recv(struct tevent_req *req); -struct tevent_req *cli_ulogoff_send(TALLOC_CTX *mem_ctx, - struct tevent_context *ev, - struct cli_state *cli); -NTSTATUS cli_ulogoff_recv(struct tevent_req *req); NTSTATUS cli_ulogoff(struct cli_state *cli); struct tevent_req *cli_tcon_andx_create(TALLOC_CTX *mem_ctx, struct tevent_context *ev, -- 2.11.4.GIT