aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/dhcdbd/files/dbus_connection_unref.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/dhcdbd/files/dbus_connection_unref.patch')
-rw-r--r--recipes/dhcdbd/files/dbus_connection_unref.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/dhcdbd/files/dbus_connection_unref.patch b/recipes/dhcdbd/files/dbus_connection_unref.patch
new file mode 100644
index 0000000000..e34c30b308
--- /dev/null
+++ b/recipes/dhcdbd/files/dbus_connection_unref.patch
@@ -0,0 +1,20 @@
+--- a/src/dbus_service.c.old 2006-11-29 08:32:03.390681525 +0100
++++ b/src/dbus_service.c 2006-11-29 08:32:18.847562363 +0100
+@@ -1216,7 +1216,7 @@
+ return (cs);
+
+ give_up:
+- dbus_connection_close(connection);
++ dbus_connection_unref(connection);
+ dbus_shutdown();
+
+ return (0L);
+@@ -1250,7 +1250,7 @@
+ tdestroy(cs->roots, free_root);
+ cs->roots = 0L;
+
+- dbus_connection_close(cs->connection);
++ dbus_connection_unref(cs->connection);
+ dbus_shutdown();
+ free(cs);
+ }