Merge "fastboot: Follow fastboot pattern to show network-connected device status"
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
index 1f7ef7e..799c9f9 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -432,7 +432,7 @@
         transport = open_device(device.c_str(), false, false);
 
         if (print) {
-            PrintDevice(device.c_str(), transport == nullptr ? "offline" : "device");
+            PrintDevice(device.c_str(), transport == nullptr ? "offline" : "fastboot");
         }
 
         if (transport != nullptr) {