From 6193cc7ae1200f47a08d9e66700d330f31570140 Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Mon, 18 Mar 2019 17:31:58 +0100 Subject: [PATCH] [#401,!254] Added space in the error message. --- src/lib/dhcpsrv/cfg_option.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. -- 2.47.2