Browse Source

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

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


git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac176@2307 e5f2f494-b856-4b98-b285-d166d9295462
Jeremy C. Reed 15 years ago
parent
commit
963591b9bb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/xfrout/xfrout.py.in

+ 2 - 2
src/bin/xfrout/xfrout.py.in

@@ -58,7 +58,7 @@ class XfroutSession(BaseRequestHandler):
     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 @@ class XfroutServer:
 
     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: