summaryrefslogtreecommitdiff
path: root/src/device.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-08-02 09:31:04 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-08-02 09:33:01 -0700
commit7adb3aa7efc3d70381c411c031f579ff63786994 (patch)
tree0a6c195abd5ea2283f52311efb9c9295d587ff94 /src/device.h
parentd06b4a6b74d4da0b997c981e1d506bf051f1a84d (diff)
downloadbluez-7adb3aa7efc3d70381c411c031f579ff63786994.tar.gz
device: Add btd_ prefix to device_is_trusted
This adds btd_ prefix to device_is_trusted so it can be used by plugins.
Diffstat (limited to 'src/device.h')
-rw-r--r--src/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device.h b/src/device.h
index d7f886224..004d3a78b 100644
--- a/src/device.h
+++ b/src/device.h
@@ -88,7 +88,7 @@ gboolean device_is_temporary(struct btd_device *device);
bool device_is_connectable(struct btd_device *device);
bool device_is_paired(struct btd_device *device, uint8_t bdaddr_type);
bool device_is_bonded(struct btd_device *device, uint8_t bdaddr_type);
-gboolean device_is_trusted(struct btd_device *device);
+bool btd_device_is_trusted(struct btd_device *device);
void device_set_paired(struct btd_device *dev, uint8_t bdaddr_type);
void device_set_unpaired(struct btd_device *dev, uint8_t bdaddr_type);
void btd_device_set_temporary(struct btd_device *device, bool temporary);