r22016: Try and fix the build - move things out of proto.h
authorJeremy Allison <jra@samba.org>
Fri, 30 Mar 2007 23:23:45 +0000 (23:23 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:19:02 +0000 (12:19 -0500)
Jeremy.
(This used to be commit 29933600cff458f6599e4604f9e861cd20fc8e38)

source3/libsmb/smb_seal.c

index fac451a6c599769f734f2bfd51d51ce4c7628873..836bd0a38f64fccb40262d80a12cfd0febdb2fe6 100644 (file)
@@ -164,7 +164,7 @@ NTSTATUS common_ntlm_encrypt_buffer(NTLMSSP_STATE *ntlmssp_state,
 ******************************************************************************/
 
 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
-NTSTATUS common_gss_decrypt_buffer(struct smb_tran_enc_state_gss *gss_state, char *buf)
+static NTSTATUS common_gss_decrypt_buffer(struct smb_tran_enc_state_gss *gss_state, char *buf)
 {
        gss_ctx_id_t gss_ctx = gss_state->gss_ctx;
        OM_uint32 ret = 0;
@@ -215,7 +215,7 @@ NTSTATUS common_gss_decrypt_buffer(struct smb_tran_enc_state_gss *gss_state, cha
  gss-api encrypt an outgoing buffer. Return the alloced encrypted pointer in buf_out.
 ******************************************************************************/
 
-NTSTATUS common_gss_encrypt_buffer(struct smb_tran_enc_state_gss *gss_state,
+static NTSTATUS common_gss_encrypt_buffer(struct smb_tran_enc_state_gss *gss_state,
                                        uint16 enc_ctx_num,
                                        char *buf,
                                        char **ppbuf_out)