From 163555c7ab56132ee27e3e7d9a26eb985682c1b5 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 17 Aug 2007 16:43:57 +0000 Subject: 2007-08-17 Havoc Pennington * tools/dbus-launch-x11.c (set_address_in_x11): fix from Michael Lorenz to use long not int with XChangeProperty format 32 * dbus/dbus-sysdeps-util-unix.c (_dbus_write_pid_to_file_and_pipe): factor this out, and use the same code in _dbus_become_daemon (where the parent writes the pid file and to the pid pipe) and in bus_context_new (where the daemon writes its own pid file and to its own pid pipe) * bus/bus.c (bus_context_new): close the pid pipe after we print to it. Also, don't write the pid to the pipe twice when we fork, someone reported this bug a long time ago. --- bus/main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bus/main.c') diff --git a/bus/main.c b/bus/main.c index 3652935e..161de19c 100644 --- a/bus/main.c +++ b/bus/main.c @@ -452,6 +452,10 @@ main (int argc, char **argv) exit (1); } + /* bus_context_new() closes the print_addr_pipe and + * print_pid_pipe + */ + setup_reload_pipe (bus_context_get_loop (context)); _dbus_set_signal_handler (SIGHUP, signal_handler); -- cgit