]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#401,!254] Added space in the error message.
authorMarcin Siodelski <marcin@isc.org>
Mon, 18 Mar 2019 16:31:58 +0000 (17:31 +0100)
committerMarcin Siodelski <marcin@isc.org>
Mon, 18 Mar 2019 16:31:58 +0000 (17:31 +0100)
src/lib/dhcpsrv/cfg_option.cc

index 54d4f8f4569d11a9ddcf14a901f0dd055ba486b9..85a8d7d84c2b4714fd0271773401cfadbadc3206 100644 (file)
@@ -77,7 +77,8 @@ CfgOption::replace(const OptionDescriptor& desc, const std::string& option_space
     // Check for presence of options.
     OptionContainerPtr options = getAll(option_space);
     if (!options) {
-        isc_throw(isc::BadValue, "option space" << option_space << " does not exist");
+        isc_throw(isc::BadValue, "option space " << option_space
+                  << " does not exist");
     }
 
     // Find the option we want to replace.