summaryrefslogtreecommitdiffstats
path: root/daemons
diff options
context:
space:
mode:
authorJan Cholasta <[email protected]>2014-11-10 18:10:27 +0000
committerJan Cholasta <[email protected]>2014-11-25 08:23:24 +0000
commit6aea2c3f3ca3f659d0ed89f5924860fbcc4e1205 (patch)
treeb604a3312a29d7865b11f0dbdb5911c12717e33f /daemons
parent02f85543dd0f7dccdefc44c309db1e44abcc0a1e (diff)
downloadfreeipa-6aea2c3f3ca3f659d0ed89f5924860fbcc4e1205.tar.gz
freeipa-6aea2c3f3ca3f659d0ed89f5924860fbcc4e1205.tar.xz
freeipa-6aea2c3f3ca3f659d0ed89f5924860fbcc4e1205.zip
Fix unchecked return value in ipa-kdb
https://fedorahosted.org/freeipa/ticket/4713 Reviewed-By: Alexander Bokovoy <[email protected]>
Diffstat (limited to 'daemons')
-rw-r--r--daemons/ipa-kdb/ipa_kdb_mspac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/ipa-kdb/ipa_kdb_mspac.c b/daemons/ipa-kdb/ipa_kdb_mspac.c
index c8f6c76fb..a45000707 100644
--- a/daemons/ipa-kdb/ipa_kdb_mspac.c
+++ b/daemons/ipa-kdb/ipa_kdb_mspac.c
@@ -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);
}
}
OSZAR »