소스 검색

fix auth documentation on auth

stefan 9 달 전
부모
커밋
fd99e275e4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      doc/shellmatta_auth.dox

+ 2 - 2
doc/shellmatta_auth.dox

@@ -76,9 +76,9 @@
         shellmatta_retCode_t custom_auth_check(const uint32_t userId, const char* password) {
             /‌/ Check if the passed userID matches the passed password.
             if (password_matches()) {
-                return userId;
+                return SHELLMATTA_OK;
             }
-            return 0;
+            return SHELLMATTA_ERROR;
         }
 
 */