- fix reading of keyUsage extensions when attempting to select pkinit client certs (part of #629022, RT#6775)

- fix selection of pkinit client certs when one or more don't include a subjectAltName extension (part of #629022, RT#6774)
This commit is contained in:
Nalin Dahyabhai 2010-09-16 19:32:06 -04:00
parent 3fe7ccdb92
commit f44b554d1b

View File

@ -5,7 +5,7 @@
Summary: The Kerberos network authentication system
Name: krb5
Version: 1.8.3
Release: 3%{?dist}
Release: 4%{?dist}
# Maybe we should explode from the now-available-to-everybody tarball instead?
# http://web.mit.edu/kerberos/dist/krb5/1.8/krb5-1.8.3-signed.tar
Source0: krb5-%{version}.tar.gz
@ -48,6 +48,8 @@ Patch63: krb5-1.8-selinux-label.patch
Patch70: krb5-trunk-kpasswd_tcp2.patch
Patch71: krb5-1.8-dirsrv-accountlock.patch
Patch72: krb5-trunk-explife.patch
Patch73: krb5-trunk-key_usage.patch
Patch74: krb5-trunk-signed.patch
License: MIT
URL: http://web.mit.edu/kerberos/www/
@ -186,6 +188,8 @@ ln -s NOTICE LICENSE
#%patch70 -p0 -b .kpasswd_tcp2
%patch71 -p1 -b .dirsrv-accountlock
%patch72 -p0 -b .explife
%patch73 -p0 -b .key_usage
%patch74 -p0 -b .signed
gzip doc/*.ps
sed -i -e '1s!\[twoside\]!!;s!%\(\\usepackage{hyperref}\)!\1!' doc/api/library.tex
@ -637,6 +641,12 @@ exit 0
%{_sbindir}/uuserver
%changelog
* Wed Sep 15 2010 Nalin Dahyabhai <nalin@redhat.com> 1.8.3-4
- fix reading of keyUsage extensions when attempting to select pkinit client
certs (part of #629022, RT#6775)
- fix selection of pkinit client certs when one or more don't include a
subjectAltName extension (part of #629022, RT#6774)
* Fri Sep 3 2010 Nalin Dahyabhai <nalin@redhat.com> 1.8.3-3
- build with -fstack-protector-all instead of the default -fstack-protector,
so that we add checking to more functions (i.e., all of them) (#629950)