- iso7816_logout should call driver specific select_file function, not the iso7816 generic version

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1186 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
okir 2003-06-10 06:31:48 +00:00
parent 2871cd8269
commit 6575a4adbf
1 changed files with 1 additions and 1 deletions

View File

@ -888,7 +888,7 @@ static int iso7816_logout(struct sc_card *card)
in_path.count = 2;
in_path.type = SC_PATH_TYPE_PATH;
return iso7816_select_file(card, &in_path, NULL);
return sc_select_file(card, &in_path, NULL);
}
static struct sc_card_operations iso_ops = {