From: Marcin Banasiak Date: Tue, 19 Oct 2010 20:06:07 +0000 (+0000) Subject: - obsolete X-Git-Tag: auto/th/ConsoleKit-0_4_3-1~1 X-Git-Url: https://git.pld-linux.org/gitweb.cgi?p=packages%2FConsoleKit.git;a=commitdiff_plain;h=51df2e88ac8ab438472a30cfc050ed56511a6997 - obsolete Changed files: ConsoleKit-reorder-initialization.patch -> 1.2 --- diff --git a/ConsoleKit-reorder-initialization.patch b/ConsoleKit-reorder-initialization.patch deleted file mode 100644 index f65abd5..0000000 --- a/ConsoleKit-reorder-initialization.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff -up ConsoleKit-0.4.1/src/main.c.reorder-initialization ConsoleKit-0.4.1/src/main.c ---- ConsoleKit-0.4.1/src/main.c.reorder-initialization 2009-12-18 14:51:38.821212946 -0500 -+++ ConsoleKit-0.4.1/src/main.c 2009-12-18 14:52:19.246211176 -0500 -@@ -294,11 +294,19 @@ main (int argc, - - setup_debug_log (debug); - -+ g_debug ("initializing console-kit-daemon %s", VERSION); -+ - connection = get_system_bus (); - if (connection == NULL) { - goto out; - } - -+ manager = ck_manager_new (); -+ -+ if (manager == NULL) { -+ goto out; -+ } -+ - bus_proxy = get_bus_proxy (connection); - if (bus_proxy == NULL) { - g_warning ("Could not construct bus_proxy object; bailing out"); -@@ -310,16 +318,8 @@ main (int argc, - goto out; - } - -- g_debug ("initializing console-kit-daemon %s", VERSION); -- - create_pid_file (); - -- manager = ck_manager_new (); -- -- if (manager == NULL) { -- goto out; -- } -- - loop = g_main_loop_new (NULL, FALSE); - - g_signal_connect (bus_proxy,