ソースを参照

fixed interface usage of custom auth check function

stefan 9 ヶ月 前
コミット
0e02aee620
1 ファイル変更1 行追加1 行削除
  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
     {