(_hx509_certs_find): add error code for keyset not found

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15796 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-07-27 20:29:49 +00:00
parent a2cf1e1758
commit 3f7e96f387

View File

@@ -252,7 +252,7 @@ _hx509_certs_find(hx509_certs certs, const hx509_query *q, hx509_cert *r)
if (ret)
return ret;
if (c == NULL)
return ENOENT;
return HX509_CERT_NOT_FOUND;
return 0;
}