Skip to content

Commit

Permalink
Fix up renames
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Oct 8, 2024
1 parent 6e77713 commit 99d0629
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/InteractionModelEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@ void InteractionModelEngine::DispatchCommand(CommandHandlerImpl & apCommandObj,
Protocols::InteractionModel::Status InteractionModelEngine::ValidateCommandCanBeDispatched(const DataModel::InvokeRequest & request)
{

Status status = CommandCheckExists(request.path);
Status status = CheckCommandExistence(request.path);

if (status != Status::Success)
{
Expand All @@ -1694,10 +1694,10 @@ Protocols::InteractionModel::Status InteractionModelEngine::ValidateCommandCanBe
return status;
}

status = CommandCheckACL(request);
status = CheckCommandAccess(request);
VerifyOrReturnValue(status == Status::Success, status);

return CommandCheckFlags(request);
return CheckCommandFlags(request);
}

Protocols::InteractionModel::Status InteractionModelEngine::CheckCommandAccess(const DataModel::InvokeRequest & aRequest)
Expand Down

0 comments on commit 99d0629

Please sign in to comment.