Bladeren bron

fixed interface usage of custom auth check function

stefan 9 maanden geleden
bovenliggende
commit
0e02aee620
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      src/shellmatta_auth.c

+ 1 - 1
src/shellmatta_auth.c

@@ -116,7 +116,7 @@ void checkPassword(shellmatta_handle_t handle, uint32_t userId, char *password)
 
     if (NULL != inst->checkFct)
     {
-        approvedUserId = inst->checkFct(userId, password);
+        approvedUserId = inst->checkFct(userId, password) == SHELLMATTA_OK ? userId : 0u;
     }
     else
     {