Update to 9.9.6-P1 (CVE-2014-8500)
Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
parent
c906894bd5
commit
460bee9b36
1
.gitignore
vendored
1
.gitignore
vendored
@ -45,3 +45,4 @@ bind-9.7.2b1.tar.gz
|
|||||||
/bind-9.9.5.tar.gz
|
/bind-9.9.5.tar.gz
|
||||||
/bind-9.9.5-P1.tar.gz
|
/bind-9.9.5-P1.tar.gz
|
||||||
/bind-9.9.6.tar.gz
|
/bind-9.9.6.tar.gz
|
||||||
|
/bind-9.9.6-P1.tar.gz
|
||||||
|
@ -17133,7 +17133,7 @@ diff -up bind-9.9.6/lib/isc/Makefile.in.native_pkcs11 bind-9.9.6/lib/isc/Makefil
|
|||||||
+OBJS = @ISC_EXTRA_OBJS@ @ISC_PK11_O@ @ISC_PK11_RESULT_O@ \
|
+OBJS = @ISC_EXTRA_OBJS@ @ISC_PK11_O@ @ISC_PK11_RESULT_O@ \
|
||||||
assertions.@O@ backtrace.@O@ base32.@O@ base64.@O@ \
|
assertions.@O@ backtrace.@O@ base32.@O@ base64.@O@ \
|
||||||
bitstring.@O@ buffer.@O@ bufferlist.@O@ commandline.@O@ \
|
bitstring.@O@ buffer.@O@ bufferlist.@O@ commandline.@O@ \
|
||||||
error.@O@ event.@O@ \
|
counter.@O@ error.@O@ event.@O@ \
|
||||||
@@ -69,7 +73,7 @@ OBJS = @ISC_EXTRA_OBJS@ \
|
@@ -69,7 +73,7 @@ OBJS = @ISC_EXTRA_OBJS@ \
|
||||||
SYMTBLOBJS = backtrace-emptytbl.@O@
|
SYMTBLOBJS = backtrace-emptytbl.@O@
|
||||||
|
|
||||||
@ -17141,8 +17141,8 @@ diff -up bind-9.9.6/lib/isc/Makefile.in.native_pkcs11 bind-9.9.6/lib/isc/Makefil
|
|||||||
-SRCS = @ISC_EXTRA_SRCS@ \
|
-SRCS = @ISC_EXTRA_SRCS@ \
|
||||||
+SRCS = @ISC_EXTRA_SRCS@ @ISC_PK11_C@ @ISC_PK11_RESULT_C@ \
|
+SRCS = @ISC_EXTRA_SRCS@ @ISC_PK11_C@ @ISC_PK11_RESULT_C@ \
|
||||||
assertions.c backtrace.c base32.c base64.c bitstring.c \
|
assertions.c backtrace.c base32.c base64.c bitstring.c \
|
||||||
buffer.c bufferlist.c commandline.c error.c event.c \
|
buffer.c bufferlist.c commandline.c counter.c \
|
||||||
heap.c hex.c hmacmd5.c hmacsha.c \
|
error.c event.c heap.c hex.c hmacmd5.c hmacsha.c \
|
||||||
diff -up bind-9.9.6/lib/isc/md5.c.native_pkcs11 bind-9.9.6/lib/isc/md5.c
|
diff -up bind-9.9.6/lib/isc/md5.c.native_pkcs11 bind-9.9.6/lib/isc/md5.c
|
||||||
--- bind-9.9.6/lib/isc/md5.c.native_pkcs11 2014-09-16 21:27:20.000000000 +0200
|
--- bind-9.9.6/lib/isc/md5.c.native_pkcs11 2014-09-16 21:27:20.000000000 +0200
|
||||||
+++ bind-9.9.6/lib/isc/md5.c 2014-10-09 13:30:47.841302943 +0200
|
+++ bind-9.9.6/lib/isc/md5.c 2014-10-09 13:30:47.841302943 +0200
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Red Hat BIND package .spec file
|
# Red Hat BIND package .spec file
|
||||||
#
|
#
|
||||||
|
|
||||||
#%%global PATCHVER P1
|
%global PATCHVER P1
|
||||||
#%%global PREVER rc2
|
#%%global PREVER rc2
|
||||||
%global VERSION %{version}%{?PREVER}%{?PATCHVER:-%{PATCHVER}}
|
%global VERSION %{version}%{?PREVER}%{?PATCHVER:-%{PATCHVER}}
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
|
|||||||
Name: bind
|
Name: bind
|
||||||
License: ISC
|
License: ISC
|
||||||
Version: 9.9.6
|
Version: 9.9.6
|
||||||
Release: 4%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
|
Release: 5%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
|
||||||
Epoch: 32
|
Epoch: 32
|
||||||
Url: http://www.isc.org/products/BIND/
|
Url: http://www.isc.org/products/BIND/
|
||||||
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
@ -1022,6 +1022,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 09 2014 Tomas Hozza <thozza@redhat.com> - 32:9.9.6-5.P1
|
||||||
|
- Update to 9.9.6-P1 (CVE-2014-8500)
|
||||||
|
|
||||||
* Fri Nov 14 2014 Tomas Hozza <thozza@redhat.com> - 32:9.9.6-4
|
* Fri Nov 14 2014 Tomas Hozza <thozza@redhat.com> - 32:9.9.6-4
|
||||||
- Fixed systemctl path in logrotate configuration (#1148360)
|
- Fixed systemctl path in logrotate configuration (#1148360)
|
||||||
- drop engine_pkcs11 dependency, since we use native PKCS#11 implementation
|
- drop engine_pkcs11 dependency, since we use native PKCS#11 implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user