Do not return the FCI information while selecting a file

The sysmoUSIM-SJS1 card does not support returning the FCI
information.
Plus, the FCI information are not used anyway.
This commit is contained in:
Jan Balke
2015-01-26 11:18:28 +01:00
committed by Harald Welte
parent 3e84067a2b
commit 8c1b33c439

View File

@@ -41,7 +41,7 @@ class SimCardCommands(object):
def select_file(self, dir_list):
rv = []
for i in dir_list:
data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000002" + i)
data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000C02" + i)
rv.append(data)
return rv