Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a127ccb authored by Hai Shalom's avatar Hai Shalom Committed by android-build-merger
Browse files

Merge "[WPA3] Fix typo in AP key comparison method" into qt-dev am: c410ad8a

am: 2cbf3070

Change-Id: I4ce602c18726752ae033c0bd470ccbf34f939be1
parents 225df5d5 2cbf3070
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1240,7 +1240,7 @@ public class AccessPoint implements Comparable<AccessPoint> {
                // Special handling for PSK-SAE transition mode. If the AP has advertised both,
                // we compare the key with both PSK and SAE for a match.
                return TextUtils.equals(mKey.substring(0, mKey.lastIndexOf(',')),
                        compareTo.substring(0, mKey.lastIndexOf(',')));
                        compareTo.substring(0, compareTo.lastIndexOf(',')));
            }
        }
        return mKey.equals(compareTo);