summaryrefslogtreecommitdiffstats
path: root/writefrudata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'writefrudata.cpp')
-rw-r--r--writefrudata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/writefrudata.cpp b/writefrudata.cpp
index 6e1fbec..1b8acba 100644
--- a/writefrudata.cpp
+++ b/writefrudata.cpp
@@ -240,7 +240,7 @@ std::string getFRUValue(const std::string& section,
//if the key is custom property then the value could be in two formats.
//1) custom field 2 = "value".
//2) custom field 2 = "key:value".
- //if delimeter length = 0 i.e custom field 2 = "value"
+ //if delimiter length = 0 i.e custom field 2 = "value"
constexpr auto customProp = "Custom Field";
if (key.find(customProp) != std::string::npos)
@@ -450,7 +450,7 @@ int ipmi_populate_fru_areas(uint8_t *fru_data, const size_t data_len,
{
rc = -1;
// Actual offset in the payload is the offset mentioned in common header
- // multipled by 8. Common header is always the first 8 bytes.
+ // multiplied by 8. Common header is always the first 8 bytes.
area_offset = fru_data[fru_entry] * IPMI_EIGHT_BYTES;
if(area_offset && (data_len < (area_offset + 2)))
{
OpenPOWER on IntegriCloud