aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Balke <jan@corenetdynamics.com>2015-01-26 11:18:28 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-02-23 08:10:13 +0100
commit800c9eb097e5374a5a64074fd64098360457dfd6 (patch)
tree732a051ad326f08fd8a608868c40757f396fc490
parent73b686f7eeb7616ea769f30376979a5baaeb86d1 (diff)
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.
-rw-r--r--pySim/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim/commands.py b/pySim/commands.py
index cb72a11..721b3d4 100644
--- a/pySim/commands.py
+++ b/pySim/commands.py
@@ -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