From 0e0b8c197da0af602f4f520110feef23987d70ce Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sun, 8 May 2005 15:41:39 +0000 Subject: 2005-05-08 Havoc Pennington * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the daemon's pid, not the parent's pid, to the file descriptor. Reported by Taj Morton. --- dbus/dbus-sysdeps-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbus/dbus-sysdeps-util.c') diff --git a/dbus/dbus-sysdeps-util.c b/dbus/dbus-sysdeps-util.c index 5c9921e0..68c2a706 100644 --- a/dbus/dbus-sysdeps-util.c +++ b/dbus/dbus-sysdeps-util.c @@ -56,7 +56,7 @@ * Does the chdir, fork, setsid, etc. to become a daemon process. * * @param pidfile #NULL, or pidfile to create - * @param print_pid_fd file descriptor to print pid to, or -1 for none + * @param print_pid_fd file descriptor to print daemon's pid to, or -1 for none * @param error return location for errors * @returns #FALSE on failure */ @@ -142,7 +142,7 @@ _dbus_become_daemon (const DBusString *pidfile, return FALSE; } - if (!_dbus_string_append_int (&pid, _dbus_getpid ()) || + if (!_dbus_string_append_int (&pid, child_pid) || !_dbus_string_append (&pid, "\n")) { _dbus_string_free (&pid); -- cgit