[Pkg-utopia-commits] r1824 - in /packages/unstable/networkmanager/debian: changelog patches/23-rfkill_return_type.patch

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Mon Oct 22 15:09:38 UTC 2007


Author: biebl
Date: Mon Oct 22 15:09:38 2007
New Revision: 1824

URL: http://svn.debian.org/wsvn/pkg-utopia/?sc=1&rev=1824
Log:
* debian/patches/23-rfkill_return_type.patch
  - The return type of the GetPower() method from Device.Killswitch has 
    changed from UINT32 to INT32 in hal-0.5.10. Fix the code accordingly.

Added:
    packages/unstable/networkmanager/debian/patches/23-rfkill_return_type.patch
Modified:
    packages/unstable/networkmanager/debian/changelog

Modified: packages/unstable/networkmanager/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/changelog?rev=1824&op=diff
==============================================================================
--- packages/unstable/networkmanager/debian/changelog (original)
+++ packages/unstable/networkmanager/debian/changelog Mon Oct 22 15:09:38 2007
@@ -1,8 +1,10 @@
-network-manager (0.6.5-3) UNRELEASED; urgency=low
-
-  * NOT RELEASED YET
-
- -- Michael Biebl <biebl at debian.org>  Fri, 28 Sep 2007 21:33:25 +0200
+network-manager (0.6.5-3) unstable; urgency=low
+
+  * debian/patches/23-rfkill_return_type.patch
+    - The return type of the GetPower() method from Device.Killswitch has 
+      changed from UINT32 to INT32 in hal-0.5.10. Fix the code accordingly.
+
+ -- Michael Biebl <biebl at debian.org>  Mon, 22 Oct 2007 17:05:44 +0200
 
 network-manager (0.6.5-2) unstable; urgency=low
 

Added: packages/unstable/networkmanager/debian/patches/23-rfkill_return_type.patch
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/patches/23-rfkill_return_type.patch?rev=1824&op=file
==============================================================================
--- packages/unstable/networkmanager/debian/patches/23-rfkill_return_type.patch (added)
+++ packages/unstable/networkmanager/debian/patches/23-rfkill_return_type.patch Mon Oct 22 15:09:38 2007
@@ -1,0 +1,22 @@
+Index: src/NetworkManager.c
+===================================================================
+--- src/NetworkManager.c	(Revision 2974)
++++ src/NetworkManager.c	(Arbeitskopie)
+@@ -339,7 +339,7 @@
+ {
+ 	DBusError		err;
+ 	DBusMessage *	reply = NULL;
+-	guint32			status;
++	gint32			status;
+ 
+ 	g_return_if_fail (pcall != NULL);
+ 	g_return_if_fail (data != NULL);
+@@ -358,7 +358,7 @@
+ 		goto out;
+ 	}
+ 
+-	if (!dbus_message_get_args (reply, &err, DBUS_TYPE_UINT32, &status, DBUS_TYPE_INVALID)) {
++	if (!dbus_message_get_args (reply, &err, DBUS_TYPE_INT32, &status, DBUS_TYPE_INVALID)) {
+ 		nm_info ("Error getting killswitch power arguments: %s - %s", err.name, err.message);
+ 		dbus_error_free (&err);
+ 		goto out;




More information about the Pkg-utopia-commits mailing list