From: Marcin Siodelski Date: Mon, 10 Feb 2014 11:46:50 +0000 (+0100) Subject: [3274] Fixed two typos. X-Git-Tag: bind10-1.2.0beta1-release~57^2~1^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=689945c67511e3010efccfeda391d663d446efa0;p=thirdparty%2Fkea.git [3274] Fixed two typos. --- diff --git a/src/lib/dhcpsrv/dhcp_parsers.cc b/src/lib/dhcpsrv/dhcp_parsers.cc index 694d616cdd..3cc16233ea 100644 --- a/src/lib/dhcpsrv/dhcp_parsers.cc +++ b/src/lib/dhcpsrv/dhcp_parsers.cc @@ -846,7 +846,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")); } diff --git a/src/lib/dhcpsrv/dhcp_parsers.h b/src/lib/dhcpsrv/dhcp_parsers.h index a48cbed8cd..9f0ff8ac19 100644 --- a/src/lib/dhcpsrv/dhcp_parsers.h +++ b/src/lib/dhcpsrv/dhcp_parsers.h @@ -774,7 +774,7 @@ public: const isc::dhcp::Option::Universe family); /// @brief parses the actual relay parameters - /// @param relay_info JSON strcture holding relay parameters to parse + /// @param relay_info JSON structure holding relay parameters to parse virtual void build(isc::data::ConstElementPtr relay_info); /// @brief stores parsed info in relay_info