From: Francis Dupont Date: Mon, 15 Jun 2015 15:40:54 +0000 (+0200) Subject: [3899] Added missing space in error message X-Git-Tag: trac3919_base~6^2~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db5fa06f8eda117309d6e6744b05056c0335b856;p=thirdparty%2Fkea.git [3899] Added missing space in error message --- diff --git a/src/lib/dhcpsrv/parsers/dhcp_parsers.cc b/src/lib/dhcpsrv/parsers/dhcp_parsers.cc index 98a7a877ea..85bcf3282f 100644 --- a/src/lib/dhcpsrv/parsers/dhcp_parsers.cc +++ b/src/lib/dhcpsrv/parsers/dhcp_parsers.cc @@ -869,7 +869,7 @@ RelayInfoParser::build(ConstElementPtr relay_info) { if ( (ip->isV4() && family_ != Option::V4) || (ip->isV6() && family_ != Option::V6) ) { isc_throw(DhcpConfigError, "ip-address field " << ip->toText() - << "does not have IP address of expected family type: " + << " does not have IP address of expected family type: " << (family_ == Option::V4 ? "IPv4" : "IPv6") << " (" << string_values_->getPosition("ip-address") << ")"); }