diff options
-rw-r--r-- | plugins/session/token-api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/session/token-api.c b/plugins/session/token-api.c index 0109f391..783e96ed 100644 --- a/plugins/session/token-api.c +++ b/plugins/session/token-api.c @@ -49,7 +49,7 @@ static void clientContextLogin (struct afb_req request) afb_req_success(request, jresp, NULL); - setLOA(request, 1); + afb_req_session_set_LOA(request, 1); } // Before entering here token will be check and renew @@ -89,7 +89,7 @@ static void clientContextLogout (struct afb_req request) { // WARNING: if you free context resource manually here do not forget to set *request.context=NULL; afb_req_success(request, jresp, NULL); - setLOA(request, 0); + afb_req_session_set_LOA(request, 0); } // Close and Free context static void clientGetPing (struct afb_req request) { |