libopensc: eliminate repetetive debug messages

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@5525 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
vtarasov 2011-05-29 18:50:33 +00:00
parent b21e04f42a
commit 2e8df6d226
1 changed files with 2 additions and 3 deletions

View File

@ -985,8 +985,6 @@ __sc_pkcs15_search_objects(sc_pkcs15_card_t *p15card,
size_t match_count = 0;
int r = 0;
sc_log(ctx, "called; class=0x%02X, type=0x%03X", class_mask, type);
if (type)
class_mask |= SC_PKCS15_TYPE_TO_CLASS(type);
@ -1044,7 +1042,8 @@ __sc_pkcs15_search_objects(sc_pkcs15_card_t *p15card,
if (ret_size <= match_count)
break;
}
LOG_FUNC_RETURN(ctx, match_count);
return match_count;
}
int sc_pkcs15_get_objects(struct sc_pkcs15_card *p15card, unsigned int type,