From 80f79a40741e254db5bfb7207856f49c24054ecd Mon Sep 17 00:00:00 2001 From: Michael Shen Date: Thu, 24 Aug 2023 13:41:53 +0000 Subject: Fix typo `DBusInteracesMap` -> `DBusInterfacesMap` Change-Id: I9a851076eccee9d79ad7bb036e58b717e06ad5d1 Signed-off-by: Michael Shen --- include/dbus_utility.hpp | 5 +++-- include/image_upload.hpp | 2 +- redfish-core/lib/account_service.hpp | 9 +++++---- redfish-core/lib/certificate_service.hpp | 2 +- redfish-core/lib/processor.hpp | 2 +- redfish-core/lib/sensors.hpp | 4 ++-- redfish-core/lib/update_service.hpp | 4 ++-- redfish-core/lib/virtual_media.hpp | 6 +++--- 8 files changed, 18 insertions(+), 16 deletions(-) diff --git a/include/dbus_utility.hpp b/include/dbus_utility.hpp index 948b8f0965..a8eefd5c1f 100644 --- a/include/dbus_utility.hpp +++ b/include/dbus_utility.hpp @@ -78,9 +78,10 @@ using DbusVariantType = std::variant< // clang-format on using DBusPropertiesMap = std::vector>; -using DBusInteracesMap = std::vector>; +using DBusInterfacesMap = + std::vector>; using ManagedObjectType = - std::vector>; + std::vector>; // Map of service name to list of interfaces using MapperServiceMap = diff --git a/include/image_upload.hpp b/include/image_upload.hpp index 2e3e689c0e..f5c81101c1 100644 --- a/include/image_upload.hpp +++ b/include/image_upload.hpp @@ -64,7 +64,7 @@ inline void BMCWEB_LOG_DEBUG("Match fired"); sdbusplus::message::object_path path; - dbus::utility::DBusInteracesMap interfaces; + dbus::utility::DBusInterfacesMap interfaces; m.read(path, interfaces); if (std::ranges::find_if(interfaces, [](const auto& i) { diff --git a/redfish-core/lib/account_service.hpp b/redfish-core/lib/account_service.hpp index 4fbf3c3c4b..298cb837c9 100644 --- a/redfish-core/lib/account_service.hpp +++ b/redfish-core/lib/account_service.hpp @@ -2009,10 +2009,11 @@ inline void return; } const auto userIt = std::ranges::find_if( - users, [accountName]( - const std::pair& user) { - return accountName == user.first.filename(); + users, + [accountName]( + const std::pair& user) { + return accountName == user.first.filename(); }); if (userIt == users.end()) diff --git a/redfish-core/lib/certificate_service.hpp b/redfish-core/lib/certificate_service.hpp index 0073bc9e6a..2fd6b96121 100644 --- a/redfish-core/lib/certificate_service.hpp +++ b/redfish-core/lib/certificate_service.hpp @@ -819,7 +819,7 @@ inline void return; } - dbus::utility::DBusInteracesMap interfacesProperties; + dbus::utility::DBusInterfacesMap interfacesProperties; sdbusplus::message::object_path csrObjectPath; m.read(csrObjectPath, interfacesProperties); diff --git a/redfish-core/lib/processor.hpp b/redfish-core/lib/processor.hpp index e09a12564c..78f25d4064 100644 --- a/redfish-core/lib/processor.hpp +++ b/redfish-core/lib/processor.hpp @@ -78,7 +78,7 @@ inline void getProcessorUUID(std::shared_ptr asyncResp, inline void getCpuDataByInterface( const std::shared_ptr& asyncResp, - const dbus::utility::DBusInteracesMap& cpuInterfacesProperties) + const dbus::utility::DBusInterfacesMap& cpuInterfacesProperties) { BMCWEB_LOG_DEBUG("Get CPU resources by interface."); diff --git a/redfish-core/lib/sensors.hpp b/redfish-core/lib/sensors.hpp index 76a8bdd0c6..f1cf96c4aa 100644 --- a/redfish-core/lib/sensors.hpp +++ b/redfish-core/lib/sensors.hpp @@ -971,7 +971,7 @@ inline void objectPropertiesToJson( inline void objectInterfacesToJson( const std::string& sensorName, const std::string& sensorType, const std::string& chassisSubNode, - const dbus::utility::DBusInteracesMap& interfacesDict, + const dbus::utility::DBusInterfacesMap& interfacesDict, nlohmann::json& sensorJson, InventoryItem* inventoryItem) { for (const auto& [interface, valuesDict] : interfacesDict) @@ -1304,7 +1304,7 @@ inline void addInventoryItem( */ inline void storeInventoryItemData( InventoryItem& inventoryItem, - const dbus::utility::DBusInteracesMap& interfacesDict) + const dbus::utility::DBusInterfacesMap& interfacesDict) { // Get properties from Inventory.Item interface diff --git a/redfish-core/lib/update_service.hpp b/redfish-core/lib/update_service.hpp index da3762567d..5860de6bd6 100644 --- a/redfish-core/lib/update_service.hpp +++ b/redfish-core/lib/update_service.hpp @@ -83,7 +83,7 @@ static void softwareInterfaceAdded(const std::shared_ptr& asyncResp, sdbusplus::message_t& m, task::Payload&& payload) { - dbus::utility::DBusInteracesMap interfacesProperties; + dbus::utility::DBusInterfacesMap interfacesProperties; sdbusplus::message::object_path objPath; @@ -330,7 +330,7 @@ inline void afterUpdateErrorMatcher(const std::shared_ptr& asyncResp, const std::string& url, sdbusplus::message_t& m) { - dbus::utility::DBusInteracesMap interfacesProperties; + dbus::utility::DBusInterfacesMap interfacesProperties; sdbusplus::message::object_path objPath; m.read(objPath, interfacesProperties); BMCWEB_LOG_DEBUG("obj path = {}", objPath.str); diff --git a/redfish-core/lib/virtual_media.hpp b/redfish-core/lib/virtual_media.hpp index 195bc07215..304fffa635 100644 --- a/redfish-core/lib/virtual_media.hpp +++ b/redfish-core/lib/virtual_media.hpp @@ -87,7 +87,7 @@ using CheckItemHandler = std::function&, const std::pair&)>; + dbus::utility::DBusInterfacesMap>&)>; inline void findAndParseObject(const std::string& service, const std::string& resName, @@ -150,7 +150,7 @@ inline std::string getTransferProtocolTypeFromUri(const std::string& imageUri) * @brief Read all known properties from VM object interfaces */ inline void - vmParseInterfaceObject(const dbus::utility::DBusInteracesMap& interfaces, + vmParseInterfaceObject(const dbus::utility::DBusInterfacesMap& interfaces, const std::shared_ptr& asyncResp) { for (const auto& [interface, values] : interfaces) @@ -310,7 +310,7 @@ inline void const std::string& resName, const std::shared_ptr& asyncResp, const std::pair& item) + dbus::utility::DBusInterfacesMap>& item) { VmMode mode = parseObjectPathAndGetMode(item.first, resName); if (mode == VmMode::Invalid) -- cgit v1.2.3