am 75258ebb: Merge "Fix a logic error so mtu works." into lmp-dev
* commit '75258ebbaa15c999b7a9832a3a90b3bf4acb944b': Fix a logic error so mtu works.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user