From 300a186a7123966d4d47fc1730014ea97cf97049 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 20 Sep 2013 04:14:00 +0200 Subject: [PATCH] s4:librpc: make dcerpc_schannel_key_send/recv static Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- source4/librpc/rpc/dcerpc_schannel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c index 130ebebd90..cd62508edd 100644 --- a/source4/librpc/rpc/dcerpc_schannel.c +++ b/source4/librpc/rpc/dcerpc_schannel.c @@ -306,7 +306,7 @@ static void continue_srv_auth2(struct tevent_req *subreq) Initiate establishing a schannel key using netlogon challenge on a secondary pipe */ -struct composite_context *dcerpc_schannel_key_send(TALLOC_CTX *mem_ctx, +static struct composite_context *dcerpc_schannel_key_send(TALLOC_CTX *mem_ctx, struct dcerpc_pipe *p, struct cli_credentials *credentials, struct loadparm_context *lp_ctx) @@ -369,7 +369,7 @@ struct composite_context *dcerpc_schannel_key_send(TALLOC_CTX *mem_ctx, /* Receive result of schannel key request */ -NTSTATUS dcerpc_schannel_key_recv(struct composite_context *c) +static NTSTATUS dcerpc_schannel_key_recv(struct composite_context *c) { NTSTATUS status = composite_wait(c); -- 2.34.1