Browse Source

constify.
(trivial)


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

JINMEI Tatuya 15 years ago
parent
commit
4c3dd96dbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/auth/asio_link.cc

+ 1 - 1
src/bin/auth/asio_link.cc

@@ -487,7 +487,7 @@ IOServiceImpl::IOServiceImpl(AuthSrv* auth_server, const char& port,
         // representation such as "-1" by lexical_cast<uint16_t>, so
         // we convert it into a signed integer of a larger size and perform
         // range check ourselves.
-        int32_t portnum32 = boost::lexical_cast<int32_t>(&port);
+        const int32_t portnum32 = boost::lexical_cast<int32_t>(&port);
         if (portnum32 < 0 || portnum32 > 65535) {
             isc_throw(IOError, "Invalid port number '" << &port);
         }