[maemo-commits] [maemo-commits] r16352 - in projects/connectivity/bluez-debian/trunk: . patches

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Sun Oct 5 00:39:12 EEST 2008
Author: jh
Date: 2008-10-05 00:39:11 +0300 (Sun, 05 Oct 2008)
New Revision: 16352

Removed:
   projects/connectivity/bluez-debian/trunk/patches/004_get_properties.patch
Modified:
   projects/connectivity/bluez-debian/trunk/changelog
   projects/connectivity/bluez-debian/trunk/libbluetooth3.shlibs
Log:
Prepare for 4.11

Modified: projects/connectivity/bluez-debian/trunk/changelog
===================================================================
--- projects/connectivity/bluez-debian/trunk/changelog	2008-10-03 15:07:59 UTC (rev 16351)
+++ projects/connectivity/bluez-debian/trunk/changelog	2008-10-04 21:39:11 UTC (rev 16352)
@@ -1,3 +1,13 @@
+bluez (4.11-0maemo1) unstable; urgency=low
+
+  * New upstream version
+  * Changes from ChangeLog since 4.10:
+     - Change SCO server socket into a generic one.
+     - Add test script for dummy telephony plugin.
+     - Fix uninitialized reply of multiple GetProperties methods.
+
+ -- Johan Hedberg <johan.hedberg at nokia.com>  Sat,  4 Oct 2008 21:32:19 +0000
+
 bluez (4.10-0maemo1) unstable; urgency=low
 
   * New upstream version

Modified: projects/connectivity/bluez-debian/trunk/libbluetooth3.shlibs
===================================================================
--- projects/connectivity/bluez-debian/trunk/libbluetooth3.shlibs	2008-10-03 15:07:59 UTC (rev 16351)
+++ projects/connectivity/bluez-debian/trunk/libbluetooth3.shlibs	2008-10-04 21:39:11 UTC (rev 16352)
@@ -1 +1 @@
-libbluetooth 3 libbluetooth3 (>= 4.10)
+libbluetooth 3 libbluetooth3 (>= 4.11)

Deleted: projects/connectivity/bluez-debian/trunk/patches/004_get_properties.patch
===================================================================
--- projects/connectivity/bluez-debian/trunk/patches/004_get_properties.patch	2008-10-03 15:07:59 UTC (rev 16351)
+++ projects/connectivity/bluez-debian/trunk/patches/004_get_properties.patch	2008-10-04 21:39:11 UTC (rev 16352)
@@ -1,52 +0,0 @@
---- audio/control.c
-+++ audio/control.c
-@@ -958,6 +958,10 @@ static DBusMessage *control_get_properties(DBusConnection *conn,
- 	DBusMessageIter dict;
- 	gboolean value;
- 
-+	reply = dbus_message_new_method_return(msg);
-+	if (!reply)
-+		return NULL;
-+
- 	dbus_message_iter_init_append(reply, &iter);
- 
- 	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
---- audio/sink.c
-+++ audio/sink.c
-@@ -519,6 +519,10 @@ static DBusMessage *sink_get_properties(DBusConnection *conn,
- 	DBusMessageIter dict;
- 	gboolean value;
- 
-+	reply = dbus_message_new_method_return(msg);
-+	if (!reply)
-+		return NULL;
-+
- 	dbus_message_iter_init_append(reply, &iter);
- 
- 	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
---- input/device.c
-+++ input/device.c
-@@ -995,6 +995,10 @@ static DBusMessage *device_get_properties(DBusConnection *conn,
- 	DBusMessageIter dict;
- 	dbus_bool_t connected;
- 
-+	reply = dbus_message_new_method_return(msg);
-+	if (!reply)
-+		return NULL;
-+
- 	dbus_message_iter_init_append(reply, &iter);
- 
- 	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
---- network/connection.c
-+++ network/connection.c
-@@ -453,6 +453,10 @@ static DBusMessage *connection_get_properties(DBusConnection *conn,
- 	const char *property;
- 	GSList *l;
- 
-+	reply = dbus_message_new_method_return(msg);
-+	if (!reply)
-+		return NULL;
-+
- 	dbus_message_iter_init_append(reply, &iter);
- 
- 	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,


More information about the maemo-commits mailing list