[svn] commit: r2307 - /branches/trac176/src/bin/xfrout/xfrout.py.in

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Jun 28 14:23:03 UTC 2010


Author: jreed
Date: Mon Jun 28 14:23:02 2010
New Revision: 2307

Log:
Remove space from "shutdown" in log message (back to way it was before).

Spell out file descriptor (this "FD" was prior to this patch).

Modified:
    branches/trac176/src/bin/xfrout/xfrout.py.in

Modified: branches/trac176/src/bin/xfrout/xfrout.py.in
==============================================================================
--- branches/trac176/src/bin/xfrout/xfrout.py.in (original)
+++ branches/trac176/src/bin/xfrout/xfrout.py.in Mon Jun 28 14:23:02 2010
@@ -58,7 +58,7 @@
     def handle(self):
         fd = recv_fd(self.request.fileno())
         if fd < 0:
-            self._log.log_message("error", "Failed to receive the FD for XFR connection")
+            self._log.log_message("error", "Failed to receive the file descriptor for XFR connection")
         data_len = self.request.recv(2)
         msg_len = struct.unpack('!H', data_len)[0]
         msgdata = self.request.recv(msg_len)
@@ -397,7 +397,7 @@
 
     def command_handler(self, cmd, args):
         if cmd == "shutdown":
-            self._log.log_message("info", "Received shut down command.")
+            self._log.log_message("info", "Received shutdown command.")
             self.shutdown()
             answer = create_answer(0)
         else: 




More information about the bind10-changes mailing list