Quellcode durchsuchen

fixed interface usage of custom auth check function

stefan vor 9 Monaten
Ursprung
Commit
0e02aee620
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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
     {