diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-12 18:29:40 +1100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-04-03 17:47:32 +0200 |
commit | cf30feef165b8fae2e39fe7cb68ff545b81d7b1d (patch) | |
tree | 8b2d0571d0f9dfec560692689d04dee01744576d | |
parent | e71546089894b4555ad1e17db49daadd0b20ab44 (diff) | |
download | samba-cf30feef165b8fae2e39fe7cb68ff545b81d7b1d.tar.gz samba-cf30feef165b8fae2e39fe7cb68ff545b81d7b1d.tar.bz2 samba-cf30feef165b8fae2e39fe7cb68ff545b81d7b1d.zip |
s3-krb5: Remove unused get_principal_from_tkt
Signed-off-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r-- | source3/include/krb5_protos.h | 1 | ||||
-rw-r--r-- | source3/libsmb/clikrb5.c | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/source3/include/krb5_protos.h b/source3/include/krb5_protos.h index 1ec077cc16..9481e7ce3b 100644 --- a/source3/include/krb5_protos.h +++ b/source3/include/krb5_protos.h @@ -66,7 +66,6 @@ void krb5_free_unparsed_name(krb5_context ctx, char *val); bool setup_kaddr( krb5_address *pkaddr, struct sockaddr_storage *paddr); int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype, bool no_salt); bool get_auth_data_from_tkt(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, krb5_ticket *tkt); -krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt); krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes); bool get_krb5_smb_session_key(TALLOC_CTX *mem_ctx, krb5_context context, diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c index 304972fce4..9f760b6ca5 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -338,15 +338,6 @@ bool unwrap_pac(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, DATA_BLOB *unwrapped_ return False; } - krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt) -{ -#if defined(HAVE_KRB5_TKT_ENC_PART2) - return tkt->enc_part2->client; -#else - return tkt->client; -#endif -} - static bool ads_cleanup_expired_creds(krb5_context context, krb5_ccache ccache, krb5_creds *credsp) |