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

Commit 613729a9 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "PPPoE: fix incorrect condition to set default DNS iface for PPPoE"

parents b105406b c915c1de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ public class PPPOEService {
                    } else if (cooked[2].equals("linkstate") && cooked.length == 5) {
                        if(cooked[3].startsWith("ppp")) {
                            if(cooked[4].equals("up")) {
                                if(mPppoeStatus != Status.ONLINE) {
                                if(mPppoeStatus == Status.CONNECTING) {
                                    setRouteAndDNS(cooked[3]);
                                    mPppoeStatus = Status.ONLINE;
                                    mConnectedtime = System.currentTimeMillis();