From 56d5a57728d2fe1fc443c7de891cc130ade7c023 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Thu, 7 Jun 2012 12:08:22 +0200 Subject: [PATCH] cli: add NM_DEVICE_STATE_REASON_BR2684_FAILED reason-to-string mapping --- cli/src/common.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/src/common.c b/cli/src/common.c index 3c13d3854d..193ea33f0e 100644 --- a/cli/src/common.c +++ b/cli/src/common.c @@ -547,6 +547,10 @@ nmc_device_reason_to_string (NMDeviceStateReason reason) case NM_DEVICE_STATE_REASON_DEPENDENCY_FAILED: return _("A dependency of the connection failed"); + + case NM_DEVICE_STATE_REASON_BR2684_FAILED: + return _("A problem with the RFC 2684 Ethernet over ADSL bridge"); + default: return _("Unknown"); }