From efbdda540a5e0e4d8dff15b0a5891e38244c2c61 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 20 Mar 2007 02:20:16 +0000 Subject: r21883: Try and fix the build by removing the prototypes for functions that take a gss context handle in includes.h Jeremy. (This used to be commit 638b03242d4a6b1df2477dad19240ed61a14a5a3) --- source3/include/includes.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/include/includes.h') diff --git a/source3/include/includes.h b/source3/include/includes.h index 5b81cfbfab..b591d7d807 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -1186,6 +1186,14 @@ krb5_error_code smb_krb5_mk_error(krb5_context context, const krb5_principal server, krb5_data *reply); +/* Call for SMB transport encryption. */ +#if defined(HAVE_GSSAPI_SUPPORT) +NTSTATUS common_gss_decrypt_buffer(gss_ctx_id_t context_handle, char *buf); +#endif +#if defined(HAVE_GSSAPI_SUPPORT) +NTSTATUS common_gss_encrypt_buffer(gss_ctx_id_t context_handle, char *buf, char **buf_out); +#endif + #endif /* HAVE_KRB5 */ -- cgit