try file id if selection via df name doesn't work; Douglas E. Engert <deengert@anl.gov>

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@2316 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
nils 2005-04-23 11:20:24 +00:00
parent 9ad11a6b28
commit d9e2a443e3

View File

@ -227,6 +227,13 @@ static int sc_pkcs15emu_gemsafe_init(sc_pkcs15_card_t *p15card)
path.len = sizeof(gemsafe_aid);
path.type = SC_PATH_TYPE_DF_NAME;
r = sc_select_file(card, &path, &file);
if (r < 0) {
/* OK, then lets try for 3f000200 */
sc_format_path("3F000200",&path);
path.type = SC_PATH_TYPE_PATH;
r = sc_select_file(card, &path, &file);
}
if (r < 0)
return SC_ERROR_WRONG_CARD;