Browse Source

terminology fix in an exception message. (trac #266)
trivial, skip review.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2390 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 15 years ago
parent
commit
0fa92078af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/xfr/xfrout_client.cc

+ 1 - 1
src/lib/xfr/xfrout_client.cc

@@ -66,7 +66,7 @@ XfroutClient::sendXfroutRequestInfo(const int tcp_sock, uint8_t* msg_data,
 {
     if (-1 == send_fd(impl_->socket_.native(), tcp_sock)) {
         isc_throw(XfroutError,
-                  "Fail to send socket descriptor to xfrout module");
+                  "Fail to send the socket file descriptor to xfrout module");
     }
 
     // XXX: this shouldn't be blocking send, even though it's unlikely to block.