(krb5_checksum_is_keyed): only set extented error string when there is a context

(krb5_checksum_is_collision_proof): ditto


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12480 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-07-22 10:08:50 +00:00
parent d05a6db6f4
commit e62ea35927

View File

@@ -1922,8 +1922,9 @@ krb5_checksum_is_keyed(krb5_context context,
{
struct checksum_type *ct = _find_checksum(type);
if(ct == NULL) {
krb5_set_error_string (context, "checksum type %d not supported",
type);
if (context)
krb5_set_error_string (context, "checksum type %d not supported",
type);
return KRB5_PROG_SUMTYPE_NOSUPP;
}
return ct->flags & F_KEYED;
@@ -1935,8 +1936,9 @@ krb5_checksum_is_collision_proof(krb5_context context,
{
struct checksum_type *ct = _find_checksum(type);
if(ct == NULL) {
krb5_set_error_string (context, "checksum type %d not supported",
type);
if (context)
krb5_set_error_string (context, "checksum type %d not supported",
type);
return KRB5_PROG_SUMTYPE_NOSUPP;
}
return ct->flags & F_CPROOF;