Skip to content

Commit 3d976bf

Browse files
committed
review updates
1 parent 141c555 commit 3d976bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/platform/linux/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ source_set("app-main") {
106106
]
107107

108108
if (current_os != "nuttx") {
109-
public_deps += [ jsoncpp_root ]
109+
public_deps += [ jsoncpp_root ]
110110
}
111111

112112
if (chip_enable_pw_rpc) {

src/app/clusters/access-control-server/access-control-server.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ bool emberAfAccessControlClusterReviewFabricRestrictionsCallback(
648648
if (restrictionIter.GetStatus() != CHIP_NO_ERROR)
649649
{
650650
ChipLogError(DataManagement, "AccessControlCluster: invalid ARL data");
651-
commandObj->AddStatus(commandPath, Protocols::InteractionModel::Status::InvalidValue);
651+
commandObj->AddStatus(commandPath, Protocols::InteractionModel::Status::InvalidCommand);
652652
return true;
653653
}
654654

@@ -658,7 +658,7 @@ bool emberAfAccessControlClusterReviewFabricRestrictionsCallback(
658658
if (entryIter.GetStatus() != CHIP_NO_ERROR)
659659
{
660660
ChipLogError(DataManagement, "AccessControlCluster: invalid ARL data");
661-
commandObj->AddStatus(commandPath, Protocols::InteractionModel::Status::InvalidValue);
661+
commandObj->AddStatus(commandPath, Protocols::InteractionModel::Status::InvalidCommand);
662662
return true;
663663
}
664664

0 commit comments

Comments
 (0)