From: Francis Dupont Date: Sat, 28 Jan 2017 09:56:05 +0000 (+0100) Subject: [5122] Added a space before position X-Git-Tag: trac5126_base~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43fac98e745f94cfc30cee0f2f25c320262412cd;p=thirdparty%2Fkea.git [5122] Added a space before position --- diff --git a/src/lib/dhcpsrv/parsers/dhcp_parsers.cc b/src/lib/dhcpsrv/parsers/dhcp_parsers.cc index 2d22382d0e..2057251fd6 100644 --- a/src/lib/dhcpsrv/parsers/dhcp_parsers.cc +++ b/src/lib/dhcpsrv/parsers/dhcp_parsers.cc @@ -1019,8 +1019,8 @@ SubnetConfigParser::createSubnet(ConstElementPtr params) { } catch (const BadValue& ex) { // addPool() can throw BadValue if the pool is overlapping or // is out of bounds for the subnet. - isc_throw(DhcpConfigError, ex.what() << "(" << params->getPosition() - << ")"); + isc_throw(DhcpConfigError, + ex.what() << " (" << params->getPosition() << ")"); } }