pldmtool: Temporary change to the Operational Fault Status enum

The pldm_operational_fault_status enum value was defined incorrectly
according to the spec here:
https://github.com/openbmc/libpldm/blob/main/include/libpldm/state_set.h#L154
This enum is being removed and added back with the correct values in
libpldm.
Thus, this commit makes a temporary change to the defined operational
fault status value in pldmtool code for the CI to pass.
The change will be reverted back once the correct enum value for
operational fault status is added.

Change-Id: I8005d22c79c3476ce6963271eb3ff19151d9d6c4
Signed-off-by: Pavithra Barithaya <pavithra.b@ibm.com>
diff --git a/pldmtool/pldm_platform_cmd.cpp b/pldmtool/pldm_platform_cmd.cpp
index d8b1b15..ecb960a 100644
--- a/pldmtool/pldm_platform_cmd.cpp
+++ b/pldmtool/pldm_platform_cmd.cpp
@@ -529,8 +529,8 @@
         {PLDM_STATE_SET_BOOT_PROG_STATE_OSSTART, "OSStart"}};
 
     static inline const std::map<uint8_t, std::string> setOpFaultStatus{
-        {PLDM_STATE_SET_OPERATIONAL_FAULT_STATUS_NORMAL, "Normal"},
-        {PLDM_STATE_SET_OPERATIONAL_FAULT_STATUS_STRESSED, "Stressed"}};
+        {PLDM_STATE_SET_OPERATIONAL_STRESS_STATUS_NORMAL, "Normal"},
+        {PLDM_STATE_SET_OPERATIONAL_STRESS_STATUS_STRESSED, "Stressed"}};
 
     static inline const std::map<uint8_t, std::string> setSysPowerState{
         {PLDM_STATE_SET_SYS_POWER_STATE_OFF_SOFT_GRACEFUL,