1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

krb5_wrap: Document smb_get_krb5_error_message()

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider 2016-08-29 17:24:41 +02:00 committed by Andrew Bartlett
parent 52c0133b50
commit dbcba4c808

View File

@ -2738,6 +2738,20 @@ char *smb_krb5_get_principal_from_service_hostname(TALLOC_CTX *mem_ctx,
return principal;
}
/**
* @brief Get an error string from a Kerberos error code.
*
* @param[in] context The library context.
*
* @param[in] code The Kerberos error code.
*
* @param[in] mem_ctx The talloc context to allocate the error string on.
*
* @return A talloc'ed error string or NULL if an error occured.
*
* The caller must free the returned error string with talloc_free() if not
* needed anymore
*/
char *smb_get_krb5_error_message(krb5_context context,
krb5_error_code code,
TALLOC_CTX *mem_ctx)