Mailinglist Archive: opensuse-commit (1262 mails)

< Previous Next >
commit hostap
  • From: root@xxxxxxx (h_root)
  • Date: Mon, 18 Sep 2006 17:43:36 +0200 (CEST)
  • Message-id: <20060918154336.2E4DF18D0DE@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package hostap
checked in at Mon Sep 18 17:43:35 CEST 2006.

--------
--- hostap/hostap.changes 2006-02-05 19:37:41.000000000 +0100
+++ hostap/hostap.changes 2006-09-18 14:15:35.000000000 +0200
@@ -1,0 +2,14 @@
+Mon Sep 18 14:13:31 CEST 2006 - jg@xxxxxxx
+
+- hostap-utils: Fixed usage of uninitialised variable (bug 184410)
+- hostapd: Update to version 0.4.9, changes:
+ * added a new configuration option, eapol_version, that can be
+ used to set EAPOL version to 1 (default is 2) to work around
+ broken client implementations that drop EAPOL frames which use
+ version number 2 [Bug 89]
+ * fixed EAP-MSCHAPv2 message length validation
+ * fixed stdarg use in hostapd_logger(): if both stdout and syslog
+ logging was enabled, hostapd could trigger a segmentation fault
+ in vsyslog on some CPU -- C library combinations
+
+-------------------------------------------------------------------

Old:
----
hostapd-0.4.7.tar.bz2

New:
----
hostap-utils.diff
hostapd-0.4.9.tar.bz2

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

Other differences:
------------------
++++++ hostap.spec ++++++
--- /var/tmp/diff_new_pack.RaX1bl/_old 2006-09-18 17:43:32.000000000 +0200
+++ /var/tmp/diff_new_pack.RaX1bl/_new 2006-09-18 17:43:32.000000000 +0200
@@ -1,11 +1,11 @@
#
-# spec file for package hostap (Version 0.4.7)
+# spec file for package hostap (Version 0.4.9)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
-# Please submit bugfixes or comments via http://bugs.opensuse.org
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild
@@ -16,8 +16,8 @@
BuildRequires: madwifi-devel
%endif
Summary: Turns Your WLAN Card into an Access Point
-Version: 0.4.7
-Release: 3
+Version: 0.4.9
+Release: 1
%define _version %{version}
%define utils_version 0.4.7
Group: Hardware/Other
@@ -31,6 +31,7 @@
Source: hostapd-%{_version}.tar.bz2
Patch: hostapd.dif
Source10: hostap-utils-%{utils_version}.tar.bz2
+Patch10: hostap-utils.diff

%description
This is a Linux driver for wireless LAN cards based on Intersil's
@@ -48,6 +49,7 @@

%prep
%setup10 -T -b 10 -n hostap-utils-%{utils_version}
+%patch10 -p1
%setup -n hostapd-%{_version}
%patch -p1

@@ -98,6 +100,17 @@
%{_defaultdocdir}/*

%changelog -n hostap
+* Mon Sep 18 2006 - jg@xxxxxxx
+- hostap-utils: Fixed usage of uninitialised variable (bug 184410)
+- hostapd: Update to version 0.4.9, changes:
+ * added a new configuration option, eapol_version, that can be
+ used to set EAPOL version to 1 (default is 2) to work around
+ broken client implementations that drop EAPOL frames which use
+ version number 2 [Bug 89]
+ * fixed EAP-MSCHAPv2 message length validation
+ * fixed stdarg use in hostapd_logger(): if both stdout and syslog
+ logging was enabled, hostapd could trigger a segmentation fault
+ in vsyslog on some CPU -- C library combinations
* Sun Feb 05 2006 - ro@xxxxxxx
- use madwifi-devel in BuildRequires
* Sun Feb 05 2006 - aj@xxxxxxx

++++++ hostap-utils.diff ++++++
Fixed usage of uninitialised variable (bug 184410)

Index: hostap-utils-0.4.7/hostap_crypt_conf.c
===================================================================
--- hostap-utils-0.4.7.orig/hostap_crypt_conf.c
+++ hostap-utils-0.4.7/hostap_crypt_conf.c
@@ -207,13 +207,13 @@ static int show_key(const char *dev, cha
struct prism2_hostapd_param *param;
int idx, i, max_key_len;

- max_key_len = sizeof(buf) -
- (int) ((char *) param->u.crypt.key - (char *) param);
-
memset(buf, 0, sizeof(buf));
param = (struct prism2_hostapd_param *) buf;
param->cmd = PRISM2_GET_ENCRYPTION;

+ max_key_len = sizeof(buf) -
+ (int) ((char *) param->u.crypt.key - (char *) param);
+
if (macstr2addr(addr, param->sta_addr))
return -1;
param->u.crypt.idx = 0xff;
++++++ hostapd-0.4.7.tar.bz2 -> hostapd-0.4.9.tar.bz2 ++++++
++++ 1844 lines of diff (skipped)


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



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
  • No further messages