Skip to content

Commit

Permalink
access option mod
Browse files Browse the repository at this point in the history
  • Loading branch information
vaughnte committed Sep 16, 2024
1 parent 97ec831 commit 7a5d8f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/blueseer/utl/OVData.java
Original file line number Diff line number Diff line change
Expand Up @@ -11845,7 +11845,7 @@ public static boolean killUserSession(String ip, String userid, String session)
}


public static boolean isValidUserLogin(String userid, String pass, String ip, String session) {
public static boolean isValidUserLogin(String userid, String passwd, String ip, String session) {

boolean isvalidIP = false;
boolean isvalidUserPass = false;
Expand All @@ -11867,7 +11867,7 @@ public static boolean isValidUserLogin(String userid, String pass, String ip, St
while (res.next()) {
i++;
String key = bsmf.MainFrame.PassWord("1", res.getString("user_passwd").toCharArray());
if (key.compareTo(pass) == 0) {
if (key.compareTo(passwd) == 0) {
isvalidUserPass = true;
}
}
Expand Down

0 comments on commit 7a5d8f2

Please sign in to comment.