remove dup return

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24822 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-02-27 03:24:57 +00:00
parent a196e330ac
commit 3ba1f9ab68

View File

@@ -2970,7 +2970,7 @@ _hx509_match_keys(hx509_cert c, hx509_private_key key)
if (der_heim_oid_cmp(key->ops->key_oid, &asn1_oid_id_pkcs1_rsaEncryption) == 0)
return match_keys_rsa(c, key);
if (der_heim_oid_cmp(key->ops->key_oid, &asn1_oid_id_ecPublicKey) == 0)
return return match_keys_ec(c, key);
return match_keys_ec(c, key);
return 0;
}