Fix more doxygen bitrot

This commit is contained in:
Viktor Dukhovni
2016-12-15 02:43:59 -05:00
parent 2cc59accca
commit 3657f23a9e
6 changed files with 14 additions and 31 deletions

View File

@@ -1053,6 +1053,7 @@ krb5_set_default_in_tkt_etypes(krb5_context context,
* with the KDC, clients and servers.
*
* @param context Kerberos 5 context.
* @param pdu_type request type (AS, TGS or none)
* @param etypes Encryption types, array terminated with
* ETYPE_NULL(0), caller should free array with krb5_xfree():
*
@@ -1073,7 +1074,7 @@ krb5_get_default_in_tkt_etypes(krb5_context context,
heim_assert(pdu_type == KRB5_PDU_AS_REQUEST ||
pdu_type == KRB5_PDU_TGS_REQUEST ||
pdu_type == KRB5_PDU_NONE, "pdu contant not as expected");
pdu_type == KRB5_PDU_NONE, "unexpected pdu type");
if (pdu_type == KRB5_PDU_AS_REQUEST && context->as_etypes != NULL)
enctypes = context->as_etypes;

View File

@@ -281,6 +281,7 @@ krb5_vabort(krb5_context context, krb5_error_code code,
* @param context A Kerberos 5 context
* @param code error code of the last error
* @param fmt message to print
* @param ... arguments for format string
*
* @ingroup krb5_error
*/