From 96a2bc43aff46e0b606c320a7b2fc25f24c93dea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Tue, 6 Mar 2012 11:39:11 +0100 Subject: [PATCH] cli: add a new reason code -> string mapping --- cli/src/devices.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/src/devices.c b/cli/src/devices.c index 20a9d5f1a..321ce2ae4 100644 --- a/cli/src/devices.c +++ b/cli/src/devices.c @@ -420,6 +420,9 @@ device_reason_to_string (NMDeviceStateReason reason) case NM_DEVICE_STATE_REASON_INFINIBAND_MODE: return _("Infiniband device does not support connected mode"); + + case NM_DEVICE_STATE_REASON_DEPENDENCY_FAILED: + return _("A dependency of the connection failed"); default: return _("Unknown"); }