[svn] commit: r2349 - /trunk/src/bin/xfrout/xfrout.py.in
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Jun 30 16:10:04 UTC 2010
Author: jelte
Date: Wed Jun 30 16:10:04 2010
New Revision: 2349
Log:
committing fix for ticket #262
Modified:
trunk/src/bin/xfrout/xfrout.py.in
Modified: trunk/src/bin/xfrout/xfrout.py.in
==============================================================================
--- trunk/src/bin/xfrout/xfrout.py.in (original)
+++ trunk/src/bin/xfrout/xfrout.py.in Wed Jun 30 16:10:04 2010
@@ -58,8 +58,10 @@
class XfroutSession(BaseRequestHandler):
def __init__(self, request, client_address, server, log):
+ # The initializer for the superclass may call functions
+ # that need _log to be set, so we set it first
+ self._log = log
BaseRequestHandler.__init__(self, request, client_address, server)
- self._log = log
def handle(self):
fd = recv_fd(self.request.fileno())
More information about the bind10-changes
mailing list