Parent: 81f7c2e15f0a73ca4551a5979f10686acd6a4670
Author: RafaĆ Gajda <rafal.gajda@silvair.com>
Committer: Brian Gix <brian.gix@intel.com>
Date: 2019-11-21 00:48:16
Tree: 3bbaab0825c37e29a704f214ad606b3bb7275b22
mesh: Fix dbus management interface input params Previously input parameters in "org.bluez.mesh.Management1" would not register properly, being shifted by one: <method name="ImportRemoteNode"> <arg name="" type="q" direction="in"/> <arg name="primary" type="y" direction="in"/> <arg name="count" type="ay" direction="in"/> </method> This fixes this issue: <method name="ImportRemoteNode"> <arg name="primary" type="q" direction="in"/> <arg name="count" type="y" direction="in"/> <arg name="dev_key" type="ay" direction="in"/> </method>
Diffstat
| M | mesh/manager.c | | | 60 | +++++++++++++++++++++++++++++- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
1 files changed, 29 insertions(+), 31 deletions(-)