summaryrefslogtreecommitdiff
path: root/src/leap/crypto
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2013-07-25 15:30:07 -0300
committerdrebs <drebs@leap.se>2013-07-25 15:30:07 -0300
commit139e699238515204c498c9ce9377289ed3a4b097 (patch)
treec4d668c7c701fa065f2225a3333a496a7dd82416 /src/leap/crypto
parent4e86d1bd29890cfb7bc02f5bcf434e175d810d1a (diff)
Fix leap.common.events rpc calls to use correct callback.
Diffstat (limited to 'src/leap/crypto')
-rw-r--r--src/leap/crypto/srpauth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/crypto/srpauth.py b/src/leap/crypto/srpauth.py
index 53f6012d..fc0533fc 100644
--- a/src/leap/crypto/srpauth.py
+++ b/src/leap/crypto/srpauth.py
@@ -387,7 +387,7 @@ class SRPAuth(QtCore.QObject):
events_signal(
proto.CLIENT_UID, content=uid,
- reqckb=lambda resp: None) # make the rpc call async
+ reqcbk=lambda req, res: None) # make the rpc call async
return M2
@@ -428,7 +428,7 @@ class SRPAuth(QtCore.QObject):
events_signal(
proto.CLIENT_SESSION_ID, content=session_id,
- reqckb=lambda resp: None) # make the rpc call async
+ reqcbk=lambda req, res: None) # make the rpc call async
self.set_session_id(session_id)