update to 1.11.1
update to 1.11.1 - drop patch for noticing negative timeouts being passed to the poll() wrapper in the client transmit functions
This commit is contained in:
parent
977a60b72c
commit
0c2dcfe3ef
@ -1,17 +0,0 @@
|
|||||||
When wrapping poll(), if we compute a negative timeout, just return a
|
|
||||||
no-results status, as the krb5int_cm_call_select() wrapper for select()
|
|
||||||
does. Based on a patch by Filip Krska.
|
|
||||||
|
|
||||||
--- krb5/src/lib/krb5/os/sendto_kdc.c
|
|
||||||
+++ krb5/src/lib/krb5/os/sendto_kdc.c
|
|
||||||
@@ -523,6 +523,10 @@ cm_select_or_poll(const struct select_st
|
|
||||||
return e;
|
|
||||||
timeout = (in->end_time.tv_sec - now.tv_sec) * 1000 +
|
|
||||||
(in->end_time.tv_usec - now.tv_usec) / 1000;
|
|
||||||
+ if (timeout < 0) {
|
|
||||||
+ *sret = 0;
|
|
||||||
+ return 0;
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
/* We don't need a separate copy of the selstate for poll, but use one
|
|
||||||
* anyone for consistency with the select wrapper. */
|
|
13
krb5.spec
13
krb5.spec
@ -29,10 +29,10 @@
|
|||||||
|
|
||||||
Summary: The Kerberos network authentication system
|
Summary: The Kerberos network authentication system
|
||||||
Name: krb5
|
Name: krb5
|
||||||
Version: 1.11
|
Version: 1.11.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
# Maybe we should explode from the now-available-to-everybody tarball instead?
|
# Maybe we should explode from the now-available-to-everybody tarball instead?
|
||||||
# http://web.mit.edu/kerberos/dist/krb5/1.11/krb5-1.11-signed.tar
|
# http://web.mit.edu/kerberos/dist/krb5/1.11/krb5-1.11.1-signed.tar
|
||||||
Source0: krb5-%{version}.tar.gz
|
Source0: krb5-%{version}.tar.gz
|
||||||
Source1: krb5-%{version}.tar.gz.asc
|
Source1: krb5-%{version}.tar.gz.asc
|
||||||
Source2: kprop.service
|
Source2: kprop.service
|
||||||
@ -69,7 +69,6 @@ Patch71: krb5-1.11-dirsrv-accountlock.patch
|
|||||||
Patch75: krb5-pkinit-debug.patch
|
Patch75: krb5-pkinit-debug.patch
|
||||||
Patch86: krb5-1.9-debuginfo.patch
|
Patch86: krb5-1.9-debuginfo.patch
|
||||||
Patch105: krb5-kvno-230379.patch
|
Patch105: krb5-kvno-230379.patch
|
||||||
Patch112: krb5-1.10.3-timeout_over.patch
|
|
||||||
Patch113: krb5-1.11-alpha1-init.patch
|
Patch113: krb5-1.11-alpha1-init.patch
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -279,7 +278,6 @@ ln -s NOTICE LICENSE
|
|||||||
#%patch75 -p1 -b .pkinit-debug
|
#%patch75 -p1 -b .pkinit-debug
|
||||||
%patch86 -p0 -b .debuginfo
|
%patch86 -p0 -b .debuginfo
|
||||||
%patch105 -p1 -b .kvno
|
%patch105 -p1 -b .kvno
|
||||||
%patch112 -p1 -b .timeout_over
|
|
||||||
%patch113 -p1 -b .init
|
%patch113 -p1 -b .init
|
||||||
|
|
||||||
# Take the execute bit off of documentation.
|
# Take the execute bit off of documentation.
|
||||||
@ -791,6 +789,11 @@ exit 0
|
|||||||
%{_sbindir}/uuserver
|
%{_sbindir}/uuserver
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 25 2013 Nalin Dahyabhai <nalin@redhat.com> 1.11.1-1
|
||||||
|
- update to 1.11.1
|
||||||
|
- drop patch for noticing negative timeouts being passed to the poll()
|
||||||
|
wrapper in the client transmit functions
|
||||||
|
|
||||||
* Fri Feb 8 2013 Nalin Dahyabhai <nalin@redhat.com> 1.11-2
|
* Fri Feb 8 2013 Nalin Dahyabhai <nalin@redhat.com> 1.11-2
|
||||||
- set "rdns = false" in the default krb5.conf (#908323)
|
- set "rdns = false" in the default krb5.conf (#908323)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user