BIND 10 trac848, updated. dc19181b46dec42bc5db83861731656a5b45b899 Fix error condition using incorrect errno reference. See Trac ticket #848 for more details. http://bind10.isc.org/ticket/848
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri May 13 12:18:37 UTC 2011
The branch, trac848 has been updated
via dc19181b46dec42bc5db83861731656a5b45b899 (commit)
from 224c7b9aeb3000e11790a2c667f0ee45c9481f17 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit dc19181b46dec42bc5db83861731656a5b45b899
Author: Shane Kerr <shane at isc.org>
Date: Fri May 13 14:17:48 2011 +0200
Fix error condition using incorrect errno reference.
See Trac ticket #848 for more details.
http://bind10.isc.org/ticket/848
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/notify/notify_out.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/notify/notify_out.py b/src/lib/python/isc/notify/notify_out.py
index 43dc7af..8f8cf43 100644
--- a/src/lib/python/isc/notify/notify_out.py
+++ b/src/lib/python/isc/notify/notify_out.py
@@ -300,7 +300,7 @@ class NotifyOut:
try:
r_fds, w, e = select.select(valid_socks, [], [], block_timeout)
except select.error as err:
- if err.args[0] != EINTR:
+ if err.args[0] != errno.EINTR:
return {}, {}
if self._read_sock in r_fds: # user has called shutdown()
More information about the bind10-changes
mailing list