From 1178287eebe25d98cbd130e16d7c9c61331f83f8 Mon Sep 17 00:00:00 2001 From: Karolin Seeger Date: Tue, 24 Jun 2008 15:53:23 +0200 Subject: rpc_client: Avoid warning in builds without krb5 headers. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit warning: ‘cli_auth_kerberos_data_destructor’ defined but not used Karolin (This used to be commit b5f9176b6ca8c137d5c065abed943fa437b5531f) --- source3/rpc_client/cli_pipe.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3') diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index ba6fbddf7f..2fd0a6e7eb 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -2439,11 +2439,13 @@ NTSTATUS rpccli_schannel_bind_data(TALLOC_CTX *mem_ctx, const char *domain, return NT_STATUS_NO_MEMORY; } +#ifdef HAVE_KRB5 static int cli_auth_kerberos_data_destructor(struct kerberos_auth_struct *auth) { data_blob_free(&auth->session_key); return 0; } +#endif NTSTATUS rpccli_kerberos_bind_data(TALLOC_CTX *mem_ctx, enum pipe_auth_level auth_level, -- cgit