rpms/kernel/FC-2 kernel-2.6.spec, 1.127, 1.128 linux-2.6.9-ieee80211.patch, 1.2, 1.3

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Mar 22 06:56:14 UTC 2005


Update of /cvs/dist/rpms/kernel/FC-2
In directory cvs.devel.redhat.com:/tmp/cvs-serv21992

Modified Files:
	kernel-2.6.spec linux-2.6.9-ieee80211.patch 
Log Message:
- Fix swapped parameters to memset in ieee802.11 code.



Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-2/kernel-2.6.spec,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- kernel-2.6.spec	26 Feb 2005 00:06:20 -0000	1.127
+++ kernel-2.6.spec	22 Mar 2005 06:56:10 -0000	1.128
@@ -1000,6 +1000,9 @@
 %endif
 
 %changelog
+* Tue Mar 22 2005 Dave Jones <davej at redhat.com>
+- Fix swapped parameters to memset in ieee802.11 code.
+
 * Thu Feb 24 2005 Dave Jones <davej at redhat.com>
 - Use old scheme first when probing USB. (#145273)
 

linux-2.6.9-ieee80211.patch:
 Makefile                         |    1 
 ieee80211/LICENSE                |  339 ++++++++++
 ieee80211/Makefile               |   23 
 ieee80211/ieee80211.h            |  861 +++++++++++++++++++++++++++
 ieee80211/ieee80211_crypt.c      |  253 ++++++++
 ieee80211/ieee80211_crypt.h      |  104 +++
 ieee80211/ieee80211_crypt_ccmp.c |  493 +++++++++++++++
 ieee80211/ieee80211_crypt_tkip.c |  734 +++++++++++++++++++++++
 ieee80211/ieee80211_crypt_wep.c  |  285 ++++++++-
 ieee80211/ieee80211_module.c     |  254 ++++++++
 ieee80211/ieee80211_rx.c         | 1225 +++++++++++++++++++++++++++++++++++++--
 ieee80211/ieee80211_tx.c         |  576 ++++++++++++++++--
 ieee80211/ieee80211_wx.c         |  610 +++++++++++++++++--
 13 files changed, 5587 insertions(+), 171 deletions(-)

Index: linux-2.6.9-ieee80211.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-2/linux-2.6.9-ieee80211.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- linux-2.6.9-ieee80211.patch	1 Jan 2005 23:12:48 -0000	1.2
+++ linux-2.6.9-ieee80211.patch	22 Mar 2005 06:56:10 -0000	1.3
@@ -2723,7 +2723,7 @@
 +	if (!txb)
 +		return NULL;
 +
-+	memset(txb, sizeof(struct ieee80211_txb), 0);
++	memset(txb, 0, sizeof(struct ieee80211_txb));
 +	txb->nr_frags = nr_frags;
 +	txb->frag_size = txb_size;
 +




More information about the fedora-cvs-commits mailing list