[bbr] fix bbr skipseqnuminc command response (#7354)

`bbr skipseqnuminc` should complete without error.
This commit is contained in:
Eduardo Montoya
2022-01-24 09:55:24 -08:00
committed by GitHub
parent 4af585400e
commit 9c6dc87ab7
+1 -1
View File
@@ -577,7 +577,7 @@ otError Interpreter::ProcessBackboneRouter(Arg aArgs[])
else if (aArgs[0] == "skipseqnuminc")
{
otBackboneRouterConfigSkipSeqNumIncrease(GetInstancePtr(), true);
ExitNow();
ExitNow(error = OT_ERROR_NONE);
}
#endif
SuccessOrExit(error = ProcessBackboneRouterLocal(aArgs));