From: Simo Sorce Date: Fri, 30 Mar 2012 21:17:07 +0000 (-0400) Subject: s4-auth-krb: Move function into more appropriate header. X-Git-Url: http://git.samba.org/idra/samba.git/?p=idra%2Fsamba.git;a=commitdiff_plain;h=670dbde65ea608c407bd49b181ece7f1dac9f670 s4-auth-krb: Move function into more appropriate header. Signed-off-by: Andreas Schneider --- diff --git a/auth/credentials/credentials_krb5.h b/auth/credentials/credentials_krb5.h index 2a66e0e39fb..fc7d0be220a 100644 --- a/auth/credentials/credentials_krb5.h +++ b/auth/credentials/credentials_krb5.h @@ -38,12 +38,4 @@ int cli_credentials_set_client_gss_creds(struct cli_credentials *cred, enum credentials_obtained obtained, const char **error_string); -/* Manually prototyped here to avoid needing krb5 headers in most callers */ -krb5_error_code principal_from_credentials(TALLOC_CTX *parent_ctx, - struct cli_credentials *credentials, - struct smb_krb5_context *smb_krb5_context, - krb5_principal *princ, - enum credentials_obtained *obtained, - const char **error_string); - #endif /* __CREDENTIALS_KRB5_H__ */ diff --git a/source4/auth/kerberos/kerberos_credentials.h b/source4/auth/kerberos/kerberos_credentials.h index e94b88e005a..362edf7d6aa 100644 --- a/source4/auth/kerberos/kerberos_credentials.h +++ b/source4/auth/kerberos/kerberos_credentials.h @@ -27,3 +27,11 @@ krb5_error_code kinit_to_ccache(TALLOC_CTX *parent_ctx, krb5_ccache ccache, enum credentials_obtained *obtained, const char **error_string); + +/* Manually prototyped here to avoid needing krb5 headers in most callers */ +krb5_error_code principal_from_credentials(TALLOC_CTX *parent_ctx, + struct cli_credentials *credentials, + struct smb_krb5_context *smb_krb5_context, + krb5_principal *princ, + enum credentials_obtained *obtained, + const char **error_string);