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

Commit 80432256 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android (Google) Code Review
Browse files

Merge "Fix a logic error so mtu works." into lmp-dev

parents c27c397e 43074032
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1534,7 +1534,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
            return;
        }

        if (LinkProperties.isValidMtu(mtu, newLp.hasGlobalIPv6Address())) {
        if (LinkProperties.isValidMtu(mtu, newLp.hasGlobalIPv6Address()) == false) {
            loge("Unexpected mtu value: " + mtu + ", " + iface);
            return;
        }