added return value + fix (needed if hide_empty_slots = true

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@883 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
sth 2003-01-27 13:17:08 +00:00
parent 7d6837321f
commit a383ed91d5
1 changed files with 3 additions and 1 deletions

View File

@ -135,6 +135,8 @@ CK_RV card_detect_all(void)
return CKR_CRYPTOKI_NOT_INITIALIZED;
for (i = 0; i < context->reader_count; i++)
card_detect(i);
return CKR_OK=;
}
CK_RV card_removed(int reader)
@ -227,7 +229,7 @@ CK_RV slot_token_removed(int id)
struct sc_pkcs11_slot *slot;
struct sc_pkcs11_object *object;
rv = slot_get_token(id, &slot);
rv = slot_get_slot(id, &slot);
if (rv != CKR_OK)
return rv;