- Fix handling of newer PKCS#12 files (rh #541924)

This commit is contained in:
Daniel Williams 2010-01-07 03:31:05 +00:00
parent 25bef9cb0e
commit 8529a653e7
2 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,11 @@
diff -up wpa_supplicant-0.6.8/src/crypto/tls_openssl.c.ossl-init wpa_supplicant-0.6.8/src/crypto/tls_openssl.c
--- wpa_supplicant-0.6.8/src/crypto/tls_openssl.c.ossl-init 2009-02-15 19:00:00.000000000 +0100
+++ wpa_supplicant-0.6.8/src/crypto/tls_openssl.c 2009-12-15 11:10:31.000000000 +0100
@@ -734,6 +734,7 @@ void * tls_init(const struct tls_config
if (tls_openssl_ref_count == 0) {
SSL_load_error_strings();
+ OpenSSL_add_all_algorithms();
SSL_library_init();
/* TODO: if /dev/urandom is available, PRNG is seeded
* automatically. If this is not the case, random data should

View File

@ -2,7 +2,7 @@ Summary: WPA/WPA2/IEEE 802.1X Supplicant
Name: wpa_supplicant
Epoch: 1
Version: 0.6.8
Release: 7%{?dist}
Release: 8%{?dist}
License: BSD
Group: System Environment/Base
Source0: http://hostap.epitest.fi/releases/%{name}-%{version}.tar.gz
@ -24,6 +24,7 @@ Patch9: wpa_supplicant-0.6.8-ap-stability.patch
Patch10: wpa_supplicant-0.6.8-scanning-property.patch
Patch11: wpa_supplicant-0.6.9-scan-faster.patch
Patch12: wpa_supplicant-0.6.9-eapol-race-fix.patch
Patch13: wpa_supplicant-0.6.8-openssl-init.patch
URL: http://w1.fi/wpa_supplicant/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@ -63,6 +64,7 @@ Graphical User Interface for wpa_supplicant written using QT3
%patch10 -p1 -b .scanning-property
%patch11 -p1 -b .scan-faster
%patch12 -p1 -b .eapol-race-fix
%patch13 -p1 -b .more-openssl-algs
%build
pushd wpa_supplicant
@ -153,6 +155,9 @@ fi
%{_bindir}/wpa_gui
%changelog
* Wed Jan 6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-8
- Fix handling of newer PKCS#12 files (rh #541924)
* Sun Nov 29 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-7
- Fix supplicant initscript return value (rh #521807)
- Fix race when connecting to WPA-Enterprise/802.1x-enabled access points (rh #508509)