r14071: fix the build
authorStefan Metzmacher <metze@samba.org>
Thu, 9 Mar 2006 13:42:13 +0000 (13:42 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:54:01 +0000 (13:54 -0500)
metze
(This used to be commit af63ed9eb3a5af3e4eeb84c66397255ea90ea764)

source4/auth/gensec/schannel.c
source4/auth/ntlmssp/ntlmssp_sign.c

index f087a24dffd34019a1763a2e5a66e967083f3279..8c9b1d8acceeec2a44bf21c5601dfc9a55c1cb04 100644 (file)
@@ -147,7 +147,8 @@ static NTSTATUS schannel_update(struct gensec_security *gensec_security, TALLOC_
  * Make sure not to call this unless gensec is using schannel...
  */
 
-_PUBLIC_/* TODO: make this non-public */NTSTATUS dcerpc_schannel_creds(struct gensec_security *gensec_security,
+/* TODO: make this non-public */
+_PUBLIC_ NTSTATUS dcerpc_schannel_creds(struct gensec_security *gensec_security,
                               TALLOC_CTX *mem_ctx,
                               struct creds_CredentialState **creds)
 { 
index 9eab0658ea49f3b66de22a891d165a8e1ea7f056..0999a85a31e5338ad8986e145b2150d699d690ac 100644 (file)
@@ -124,7 +124,8 @@ static NTSTATUS ntlmssp_make_packet_signature(struct gensec_ntlmssp_state *gense
        return NT_STATUS_OK;
 }
 
-_PUBLIC_/* TODO: make this non-public */NTSTATUS gensec_ntlmssp_sign_packet(struct gensec_security *gensec_security, 
+/* TODO: make this non-public */
+_PUBLIC_ NTSTATUS gensec_ntlmssp_sign_packet(struct gensec_security *gensec_security, 
                                    TALLOC_CTX *sig_mem_ctx, 
                                    const uint8_t *data, size_t length, 
                                    const uint8_t *whole_pdu, size_t pdu_length, 
@@ -298,7 +299,8 @@ NTSTATUS gensec_ntlmssp_unseal_packet(struct gensec_security *gensec_security,
 /**
    Initialise the state for NTLMSSP signing.
 */
-_PUBLIC_/* TODO: make this non-public */NTSTATUS ntlmssp_sign_init(struct gensec_ntlmssp_state *gensec_ntlmssp_state)
+/* TODO: make this non-public */
+_PUBLIC_ NTSTATUS ntlmssp_sign_init(struct gensec_ntlmssp_state *gensec_ntlmssp_state)
 {
        TALLOC_CTX *mem_ctx = talloc_new(gensec_ntlmssp_state);