From c4bb7f26a803f77a6b77c9e49851c0a8f1eddf7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Thu, 30 Aug 2012 14:10:33 +0200 Subject: [PATCH] cli: add NM_DEVICE_STATE_REASON_MODEM_MANAGER_UNAVAILABLE reason-to-string mapping --- cli/src/common.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/src/common.c b/cli/src/common.c index 193ea33f0..0b8a4956b 100644 --- a/cli/src/common.c +++ b/cli/src/common.c @@ -551,6 +551,9 @@ nmc_device_reason_to_string (NMDeviceStateReason reason) case NM_DEVICE_STATE_REASON_BR2684_FAILED: return _("A problem with the RFC 2684 Ethernet over ADSL bridge"); + case NM_DEVICE_STATE_REASON_MODEM_MANAGER_UNAVAILABLE: + return _("ModemManager is unavailable"); + default: return _("Unknown"); }