소스 검색

only call login function when the login was successful

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

+ 1 - 2
src/shellmatta_auth.c

@@ -149,9 +149,8 @@ void checkPassword(shellmatta_handle_t handle, uint32_t userId, char *password)
     else
     {
         shellmatta_write(handle, "login successful\r\n", 18);
+        (void)shellmatta_auth_login(handle, approvedUserId);
     }
-
-    (void)shellmatta_auth_login(handle, approvedUserId);
 }
 
 /**