From 566071b2ea949affd9d776cd0b66fcf33714d858 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Fri, 24 Aug 2012 17:25:07 +0200 Subject: [PATCH] Change "Status" to "State" to ease parsing of output (prevent conflict with the status of the command). --- daemon/commands/ipv6.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/commands/ipv6.cc b/daemon/commands/ipv6.cc index 1edb744b4..65e4e2251 100644 --- a/daemon/commands/ipv6.cc +++ b/daemon/commands/ipv6.cc @@ -9,7 +9,7 @@ public: void IPv6CommandPrivate::outputIPv6(Daemon* app, ostringstream& ost) { bool ipv6_enabled = linphone_core_ipv6_enabled(app->getCore()) == TRUE ? true : false; - ost << "Status: "; + ost << "State: "; if (ipv6_enabled) { ost << "enabled\n"; } else {