krb5: fix const warning in krb5_c_verify_checksum()
This commit is contained in:
@@ -76,7 +76,7 @@ krb5_c_verify_checksum(krb5_context context, const krb5_keyblock *key,
|
|||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
ret = krb5_verify_checksum(context, crypto, usage,
|
ret = krb5_verify_checksum(context, crypto, usage,
|
||||||
data->data, data->length, cksum);
|
data->data, data->length, rk_UNCONST(cksum));
|
||||||
krb5_crypto_destroy(context, crypto);
|
krb5_crypto_destroy(context, crypto);
|
||||||
|
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
|
Reference in New Issue
Block a user