diff options
author | Jeremy Allison <jra@samba.org> | 2007-03-30 23:23:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:02 -0500 |
commit | 44ca85a506043e9d1b3ac2e66b0ae17d2d0b92da (patch) | |
tree | 721d35df5bc4af979cc889bd1be665531085258e /source3/libsmb | |
parent | ce3c830f15ec4afad40753f3a35f4bad6c360c8c (diff) | |
download | samba-44ca85a506043e9d1b3ac2e66b0ae17d2d0b92da.tar.gz samba-44ca85a506043e9d1b3ac2e66b0ae17d2d0b92da.tar.bz2 samba-44ca85a506043e9d1b3ac2e66b0ae17d2d0b92da.zip |
r22016: Try and fix the build - move things out of proto.h
Jeremy.
(This used to be commit 29933600cff458f6599e4604f9e861cd20fc8e38)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/smb_seal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/smb_seal.c b/source3/libsmb/smb_seal.c index fac451a6c5..836bd0a38f 100644 --- a/source3/libsmb/smb_seal.c +++ b/source3/libsmb/smb_seal.c @@ -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) |