sdbusplus: remove usage of deprecated alias
The alias `server::match` has been deprecated since 2016. Use the new
alias under bus.
Change-Id: I21baf6b70401d996519b5940d0cd685535475a2f
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/control/zone.hpp b/control/zone.hpp
index e7c01f3..c82f0a8 100644
--- a/control/zone.hpp
+++ b/control/zone.hpp
@@ -573,9 +573,9 @@
* @param[in] data - Event data for signal
* @param[in] match - Subscribed signal match
*/
- inline void
- addSignal(const std::string& name, std::unique_ptr<EventData>&& data,
- std::unique_ptr<sdbusplus::server::match::match>&& match)
+ inline void addSignal(const std::string& name,
+ std::unique_ptr<EventData>&& data,
+ std::unique_ptr<sdbusplus::bus::match_t>&& match)
{
_signalEvents[name].emplace_back(std::move(data), std::move(match));
}