From 438fb7872058b41b737ca4f877476ecbdb270b01 Mon Sep 17 00:00:00 2001 From: David Smith Date: Wed, 21 Dec 2022 20:44:53 -0500 Subject: [PATCH] [cli] fix incorrect mask "channel manager" CLI output (#8571) --- src/cli/cli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/cli.cpp b/src/cli/cli.cpp index 312b85948..d35bf3e12 100644 --- a/src/cli/cli.cpp +++ b/src/cli/cli.cpp @@ -1861,7 +1861,7 @@ template <> otError Interpreter::Process(Arg aArgs[]) OutputLine("interval: %lu", ToUlong(otChannelManagerGetAutoChannelSelectionInterval(GetInstancePtr()))); OutputLine("cca threshold: 0x%04x", otChannelManagerGetCcaFailureRateThreshold(GetInstancePtr())); OutputLine("supported: %s", supportedMask.ToString().AsCString()); - OutputLine("favored: %s", supportedMask.ToString().AsCString()); + OutputLine("favored: %s", favoredMask.ToString().AsCString()); } } /**