Fix unchecked return value in ipa-kdb

https://fedorahosted.org/freeipa/ticket/4713

Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
Jan Cholasta 2014-11-10 18:10:27 +00:00
parent eed7fb6378
commit c8bc6b8818

View File

@ -2070,7 +2070,7 @@ krb5_error_code ipadb_sign_authdata(krb5_context context,
krb5_princ_component(context, ks_client_princ, 1)->length,
ipactx->kdc_hostname, strlen(ipactx->kdc_hostname),
NULL, NULL, &result) == 0) {
kerr = ipadb_reinit_mspac(ipactx, true);
(void)ipadb_reinit_mspac(ipactx, true);
}
}