diff --git a/test/nm-tool.c b/test/nm-tool.c index 41c695bdc5..6367a7a437 100644 --- a/test/nm-tool.c +++ b/test/nm-tool.c @@ -34,6 +34,8 @@ #include #include #include +#include +#include #include static gboolean @@ -211,6 +213,10 @@ detail_device (gpointer data, gpointer user_data) print_string ("Type", "Wired"); else if (NM_IS_DEVICE_802_11_WIRELESS (device)) print_string ("Type", "802.11 Wireless"); + else if (NM_IS_GSM_DEVICE (device)) + print_string ("Type", "Mobile Broadband (GSM)"); + else if (NM_IS_CDMA_DEVICE (device)) + print_string ("Type", "Mobile Broadband (CDMA)"); print_string ("Driver", nm_device_get_driver (device) ? nm_device_get_driver (device) : "(unknown)");