summaryrefslogtreecommitdiff
path: root/dbus/dbus-sysdeps-unix.c
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2022-03-03 17:15:44 +0100
committerSimon McVittie <smcv@collabora.com>2022-05-17 23:06:54 +0000
commitf888ee802868e1d2b243a3477c0590f064dc5d7b (patch)
treeae0a324d0612e3a03c53900a35f8ed50cd7ac08b /dbus/dbus-sysdeps-unix.c
parent8b4699332db368c2d0a2be624249d5cc55025c8b (diff)
downloaddbus-f888ee802868e1d2b243a3477c0590f064dc5d7b.tar.gz
On Windows in autolaunch related function use rmutex related functions to support thread locking
The previously used additional and incomplete functions have been merged into the current rmutex functions to fix the reported bug and reduce the maintenance effort. Fixes #368, #370 Signed-off-by: Ralf Habacker <ralf.habacker@freenet.de>
Diffstat (limited to 'dbus/dbus-sysdeps-unix.c')
-rw-r--r--dbus/dbus-sysdeps-unix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c
index 4ee23287..24a4a242 100644
--- a/dbus/dbus-sysdeps-unix.c
+++ b/dbus/dbus-sysdeps-unix.c
@@ -4655,9 +4655,10 @@ _dbus_append_keyring_directory_for_credentials (DBusString *directory,
}
/* Documented in dbus-sysdeps-win.c, does nothing on Unix */
-void
+dbus_bool_t
_dbus_daemon_unpublish_session_bus_address (void)
{
+ return TRUE;
}
/**