From: Marcin Siodelski Date: Mon, 18 Mar 2019 16:31:58 +0000 (+0100) Subject: [#401,!254] Added space in the error message. X-Git-Tag: Kea-1.6.0-beta~362^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6193cc7ae1200f47a08d9e66700d330f31570140;p=thirdparty%2Fkea.git [#401,!254] Added space in the error message. --- diff --git a/src/lib/dhcpsrv/cfg_option.cc b/src/lib/dhcpsrv/cfg_option.cc index 54d4f8f456..85a8d7d84c 100644 --- a/src/lib/dhcpsrv/cfg_option.cc +++ b/src/lib/dhcpsrv/cfg_option.cc @@ -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.