summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/DBusServerProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CommLayer/DBusServerProxy.cpp')
-rw-r--r--lib/CommLayer/DBusServerProxy.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CommLayer/DBusServerProxy.cpp b/lib/CommLayer/DBusServerProxy.cpp
index 0693c6d..a246e8a 100644
--- a/lib/CommLayer/DBusServerProxy.cpp
+++ b/lib/CommLayer/DBusServerProxy.cpp
@@ -212,9 +212,10 @@ DBus::Message CDBusServer_adaptor::_GetPluginSettings_stub(const DBus::CallMessa
{
DBus::MessageIter ri = call.reader();
std::string PluginName;
+ std::string uid;
ri >> PluginName;
map_plugin_settings_t plugin_settings;
- plugin_settings = GetPluginSettings(PluginName);
+ plugin_settings = GetPluginSettings(PluginName, call.sender());
DBus::ReturnMessage reply(call);
DBus::MessageIter wi = reply.writer();
wi << plugin_settings;