2006-10-17 Havoc Pennington <hp@redhat.com>
authorHavoc Pennington <hp@redhat.com>
Tue, 17 Oct 2006 22:31:16 +0000 (22:31 +0000)
committerHavoc Pennington <hp@redhat.com>
Tue, 17 Oct 2006 22:31:16 +0000 (22:31 +0000)
* tools/dbus-send.c (main): don't close shared connection, fix
from Timo Hoenig

ChangeLog
tools/dbus-send.c

index 1efc6a7..a07c028 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2006-10-17  Havoc Pennington  <hp@redhat.com>
 
+       * tools/dbus-send.c (main): don't close shared connection, fix
+       from Timo Hoenig
+
+2006-10-17  Havoc Pennington  <hp@redhat.com>
+
        * configure.in (CPPFLAGS): don't do -DDBUS_API_SUBJECT_TO_CHANGE here
 
        * dbus/dbus.h: drop the DBUS_API_SUBJECT_TO_CHANGE requirement,
index a87d204..e82a2f9 100644 (file)
@@ -484,7 +484,7 @@ main (int argc, char *argv[])
 
   dbus_message_unref (message);
 
-  dbus_connection_close (connection);
+  dbus_connection_unref (connection);
 
   exit (0);
 }