We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c21cf commit 78e3240Copy full SHA for 78e3240
orchagent/aclorch.cpp
@@ -939,7 +939,7 @@ bool AclRule::validateAddMatch(string attr_name, string attr_value)
939
}
940
else
941
{
942
- SWSS_LOG_ERROR("Invalid BTH_OPCODE configuration: %s, expected format <data>/<mask>", attr_value);
+ SWSS_LOG_ERROR("Invalid BTH_OPCODE configuration: %s, expected format <data>/<mask>", attr_value.c_str());
943
return false;
944
945
@@ -954,7 +954,7 @@ bool AclRule::validateAddMatch(string attr_name, string attr_value)
954
955
956
957
- SWSS_LOG_ERROR("Invalid AETH_SYNDROME configuration: %s, expected format <data>/<mask>", attr_value);
+ SWSS_LOG_ERROR("Invalid AETH_SYNDROME configuration: %s, expected format <data>/<mask>", attr_value.c_str());
958
959
960
0 commit comments