]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1661] Fixed build on last Fedora
authorFrancis Dupont <fdupont@isc.org>
Mon, 22 Feb 2021 09:06:45 +0000 (10:06 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 24 Mar 2021 08:10:00 +0000 (09:10 +0100)
src/lib/http/tests/server_client_unittests.cc
src/lib/http/tests/tls_client_unittests.cc

index 189b016023cd531d2caa850aa79b746624595975..a454ddb8242ca079ee29f6245d8985546c2b1e79 100644 (file)
@@ -1783,7 +1783,7 @@ public:
 
         /// @brief Handshake callback handler
         /// @param ec Error status of the ASIO connect
-        bool handshakeHandler(const boost::system::error_code& ec, int) {
+        bool handshakeHandler(const boost::system::error_code&, int) {
             ADD_FAILURE() << "handshake callback handler is called";
             // ec indicates an error, return true, so that error can be handled
             // by Connection logic.
index 288845fb1984b9a5af732f5452150d097942e80b..96cb4060e28d1aeb499f0f0418d3c7c403734256 100644 (file)
@@ -1078,7 +1078,7 @@ public:
 
         /// @brief Handshake callback handler
         /// @param ec Error status of the ASIO connect
-        bool handshakeHandler(const boost::system::error_code& ec, int) {
+        bool handshakeHandler(const boost::system::error_code&, int) {
             ++handshake_cnt_;
             // ec indicates an error, return true, so that error can be handled
             // by Connection logic.