aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Balke <jan@corenetdynamics.com>2015-01-26 11:18:28 +0100
committerHarald Welte <laforge@gnumonks.org>2015-08-20 13:32:56 +0200
commit8c1b33c439fef423c3536e9243035722c52aba4c (patch)
treee14be9a1a05b84ec5a8f07a81eeb013177e74949
parent3e84067a2be95a1236bf8e66ffe1d64f8aa3abaa (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