]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2948] fix an exception message
authorAndrei Pavel <andrei@isc.org>
Tue, 18 Jul 2023 08:32:12 +0000 (11:32 +0300)
committerAndrei Pavel <andrei@isc.org>
Tue, 18 Jul 2023 09:27:13 +0000 (12:27 +0300)
src/lib/config/cmd_http_listener.cc

index 41ae19ac49fc401f278bc4e1ad7f632121cc9c7b..8c54d52680380bd8d34280d36a015504dc497ac8 100644 (file)
@@ -84,7 +84,7 @@ CmdHttpListener::start() {
         thread_io_service_.reset();
         http_listener_.reset();
         thread_pool_.reset();
-        isc_throw(Unexpected, "CmdHttpListener::run failed:" << ex.what());
+        isc_throw(Unexpected, "CmdHttpListener::start failed: " << ex.what());
     }
 }