diff options
author | Simo Sorce <idra@samba.org> | 2012-03-30 17:17:07 -0400 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2012-04-12 12:06:41 +0200 |
commit | 670dbde65ea608c407bd49b181ece7f1dac9f670 (patch) | |
tree | bb5b72e6681872044fd6d34b4dc2d4a1a713421f /source4/auth/kerberos | |
parent | 70f1cd6724a489cf3507fa196ff59fa8477cfbe1 (diff) | |
download | samba-670dbde65ea608c407bd49b181ece7f1dac9f670.tar.gz samba-670dbde65ea608c407bd49b181ece7f1dac9f670.tar.xz samba-670dbde65ea608c407bd49b181ece7f1dac9f670.zip |
s4-auth-krb: Move function into more appropriate header.
Signed-off-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4/auth/kerberos')
-rw-r--r-- | source4/auth/kerberos/kerberos_credentials.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/auth/kerberos/kerberos_credentials.h b/source4/auth/kerberos/kerberos_credentials.h index e94b88e005..362edf7d6a 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); |