summaryrefslogtreecommitdiff
path: root/ckcapi-trust.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2008-12-09 18:57:59 +0000
committerStef Walter <stef@memberwebs.com>2008-12-09 18:57:59 +0000
commit128d6627d8a03544137ada01934bf62934982172 (patch)
tree97e3a2302a50759b630b043d4fc0b4e7f27d4a90 /ckcapi-trust.c
parentf22ca594d066f305c5c289dc522b2a13917234d0 (diff)
Better handling of attribute data types. Remove concept of a date type.
Diffstat (limited to 'ckcapi-trust.c')
-rw-r--r--ckcapi-trust.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ckcapi-trust.c b/ckcapi-trust.c
index b048b9c..0449fc6 100644
--- a/ckcapi-trust.c
+++ b/ckcapi-trust.c
@@ -257,12 +257,6 @@ trust_bytes_attribute(CkCapiObjectData* objdata, CK_ATTRIBUTE_PTR attr)
return CKR_ATTRIBUTE_TYPE_INVALID;
}
-static CK_RV
-trust_date_attribute(CkCapiObjectData* objdata, CK_ATTRIBUTE_PTR attr)
-{
- return CKR_ATTRIBUTE_TYPE_INVALID;
-}
-
static unsigned int
trust_hash_func(CkCapiObject* obj)
{
@@ -294,7 +288,6 @@ static const CkCapiObjectDataVtable trust_objdata_vtable = {
trust_bool_attribute,
trust_ulong_attribute,
trust_bytes_attribute,
- trust_date_attribute,
trust_release,
};