]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3899] Added missing space in error message
authorFrancis Dupont <fdupont@isc.org>
Mon, 15 Jun 2015 15:40:54 +0000 (17:40 +0200)
committerFrancis Dupont <fdupont@isc.org>
Mon, 15 Jun 2015 15:40:54 +0000 (17:40 +0200)
src/lib/dhcpsrv/parsers/dhcp_parsers.cc

index 98a7a877ead01801bd493179bd8fb650c32297bb..85bcf3282fec02fe134d5bd9a4887a65d48d723d 100644 (file)
@@ -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") << ")");
     }