(hx509_name_cmp): add

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19815 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-10 21:44:25 +00:00
parent 97be909572
commit 5b9b07461e

View File

@@ -298,6 +298,13 @@ _hx509_name_cmp(const Name *n1, const Name *n2)
return 0;
}
int
hx509_name_cmp(hx509_name n1, hx509_name n2)
{
return _hx509_name_cmp(&n1->der_name, &n2->der_name);
}
int
_hx509_name_from_Name(const Name *n, hx509_name *name)
{