Merge "fastboot: fix network connected device status" into main

This commit is contained in:
Treehugger Robot 2023-12-11 23:41:21 +00:00 committed by Gerrit Code Review
commit dcf3542d43

View file

@ -402,7 +402,7 @@ static std::unique_ptr<Transport> NetworkDeviceConnected(bool print = false) {
transport = open_device(device.c_str(), false, false);
if (print) {
PrintDevice(device.c_str(), transport ? "offline" : "fastboot");
PrintDevice(device.c_str(), transport ? "fastboot" : "offline");
}
if (transport) {