summaryrefslogtreecommitdiff
path: root/redfish-core
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core')
-rw-r--r--redfish-core/lib/network_protocol.hpp24
1 files changed, 9 insertions, 15 deletions
diff --git a/redfish-core/lib/network_protocol.hpp b/redfish-core/lib/network_protocol.hpp
index c57343c3bd..31fc5afc04 100644
--- a/redfish-core/lib/network_protocol.hpp
+++ b/redfish-core/lib/network_protocol.hpp
@@ -294,21 +294,17 @@ inline void
{
if (!ntpServerObject->empty())
{
- messages::propertyValueNotInList(
- asyncResp->res,
- ntpServer.dump(2, ' ', true,
- nlohmann::json::error_handler_t::replace),
- "NTP/NTPServers/" + std::to_string(index));
+ messages::propertyValueNotInList(asyncResp->res, ntpServer,
+ "NTP/NTPServers/" +
+ std::to_string(index));
return;
}
// Can't retain an item that doesn't exist
if (currentNtpServer == currentNtpServers.end())
{
- messages::propertyValueOutOfRange(
- asyncResp->res,
- ntpServer.dump(2, ' ', true,
- nlohmann::json::error_handler_t::replace),
- "NTP/NTPServers/" + std::to_string(index));
+ messages::propertyValueOutOfRange(asyncResp->res, ntpServer,
+ "NTP/NTPServers/" +
+ std::to_string(index));
return;
}
@@ -321,11 +317,9 @@ inline void
ntpServer.get_ptr<const std::string*>();
if (ntpServerStr == nullptr)
{
- messages::propertyValueTypeError(
- asyncResp->res,
- ntpServer.dump(2, ' ', true,
- nlohmann::json::error_handler_t::replace),
- "NTP/NTPServers/" + std::to_string(index));
+ messages::propertyValueTypeError(asyncResp->res, ntpServer,
+ "NTP/NTPServers/" +
+ std::to_string(index));
return;
}
if (currentNtpServer == currentNtpServers.end())