Mailinglist Archive: opensuse-commit (1117 mails)

< Previous Next >
commit wpa_supplicant for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Mon, 09 Feb 2009 18:00:44 +0100
  • Message-id: <20090209170045.33BDE678161@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package wpa_supplicant for openSUSE:Factory
checked in at Mon Feb 9 18:00:44 CET 2009.


--------
--- wpa_supplicant/wpa_supplicant.changes 2009-01-28 14:10:00.000000000
+0100
+++ /mounts/work_src_done/STABLE/wpa_supplicant/wpa_supplicant.changes
2009-02-09 16:07:53.000000000 +0100
@@ -2 +2,7 @@
-Wed Jan 28 14:03:42 CET 2009 - helmut@xxxxxxx
+Mon Feb 9 16:06:44 CET 2009 - hschaa@xxxxxxx
+
+- Add wpa_supplicant-respect_no_reply.patch which avoids
+ D-Bus errors if no reply was requested by the caller
+
+-------------------------------------------------------------------
+Wed Jan 28 14:03:42 CET 2009 - hschaa@xxxxxxx

calling whatdependson for head-i586


New:
----
wpa_supplicant-respect_no_reply.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ wpa_supplicant.spec ++++++
--- /var/tmp/diff_new_pack.VS9097/_old 2009-02-09 18:00:37.000000000 +0100
+++ /var/tmp/diff_new_pack.VS9097/_new 2009-02-09 18:00:37.000000000 +0100
@@ -22,7 +22,7 @@
BuildRequires: dbus-1-devel libqt4 libqt4-devel openssl-devel pkg-config
readline-devel
Url: http://hostap.epitest.fi/wpa_supplicant/
Version: 0.6.4
-Release: 22
+Release: 24
License: BSD 3-Clause; GPL v2 or later
Group: Productivity/Networking/Other
Summary: WPA supplicant implementation
@@ -45,6 +45,7 @@
Patch12: wpa_supplicant-fix_dbus_config.patch
Patch13: wpa_supplicant-fix_dbus_config2.patch
Patch14: wpa_supplicant-fix_ap_ordering.patch
+Patch15: wpa_supplicant-respect_no_reply.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build

%description
@@ -93,6 +94,7 @@
%patch12 -p1
%patch13 -p2
%patch14 -p2
+%patch15 -p2

%build
cd wpa_supplicant
@@ -137,7 +139,10 @@
/usr/sbin/wpa_gui

%changelog
-* Wed Jan 28 2009 helmut@xxxxxxx
+* Mon Feb 09 2009 hschaa@xxxxxxx
+- Add wpa_supplicant-respect_no_reply.patch which avoids
+ D-Bus errors if no reply was requested by the caller
+* Wed Jan 28 2009 hschaa@xxxxxxx
- Avoid unnecessary roaming if the driver (like ipw2100) does not
report signal level. This fixes association problems with ipw2100
(bnc#469779).

++++++ wpa_supplicant-respect_no_reply.patch ++++++
--- BUILD/wpa_supplicant-0.6.4/wpa_supplicant/ctrl_iface_dbus.c
+++ BUILD/wpa_supplicant-0.6.4/wpa_supplicant/ctrl_iface_dbus.c
@@ -547,7 +547,8 @@

/* If the message was handled, send back the reply */
if (reply) {
- dbus_connection_send(connection, reply, NULL);
+ if(!dbus_message_get_no_reply(message))
+ dbus_connection_send(connection, reply, NULL);
dbus_message_unref(reply);
}

@@ -606,7 +607,8 @@

/* If the message was handled, send back the reply */
if (reply) {
- dbus_connection_send(connection, reply, NULL);
+ if (!dbus_message_get_no_reply(message))
+ dbus_connection_send(connection, reply, NULL);
dbus_message_unref(reply);
}


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread