aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-10-27 14:40:02 +0200
committerHarald Welte <laforge@gnumonks.org>2016-10-27 14:40:02 +0200
commit9a1dcea7b3d427d9ed16a36b7fe8d15ef7002d61 (patch)
tree9b3fd06fb35ce10fed16100c328639e93b7bfb3e
parent4e824686f5e0b104653911032b124cbd31228dcd (diff)
Revert "Do not return the FCI information while selecting a file"
This reverts commit 8c1b33c439fef423c3536e9243035722c52aba4c.
-rw-r--r--pySim/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim/commands.py b/pySim/commands.py
index 721b3d4..cb72a11 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 + "a4000C02" + i)
+ data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000002" + i)
rv.append(data)
return rv