From: Francis Dupont Date: Sun, 14 Jun 2015 12:30:09 +0000 (+0200) Subject: [3899] Added missing spaces in error message X-Git-Tag: trac3919_base~6^2~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a88ed0d74c5a9aef323ea54d3c96a9e9ac2d6fb6;p=thirdparty%2Fkea.git [3899] Added missing spaces in error message --- diff --git a/src/lib/dhcp/option6_client_fqdn.cc b/src/lib/dhcp/option6_client_fqdn.cc index 6eaa494141..f8fba2ed52 100644 --- a/src/lib/dhcp/option6_client_fqdn.cc +++ b/src/lib/dhcp/option6_client_fqdn.cc @@ -250,7 +250,7 @@ Option6ClientFqdnImpl::parseWireData(OptionBufferConstIter first, try { domain_name_.reset(new isc::dns::Name(name_buf, true)); } catch (const Exception& ex) { - isc_throw(InvalidOption6FqdnDomainName, "failed to parse" + isc_throw(InvalidOption6FqdnDomainName, "failed to parse " "partial domain-name from wire format"); } // Terminating zero was missing, so set the domain-name type @@ -265,7 +265,7 @@ Option6ClientFqdnImpl::parseWireData(OptionBufferConstIter first, try { domain_name_.reset(new isc::dns::Name(name_buf, true)); } catch (const Exception& ex) { - isc_throw(InvalidOption6FqdnDomainName, "failed to parse" + isc_throw(InvalidOption6FqdnDomainName, "failed to parse " "fully qualified domain-name from wire format"); } // Set the domain-type to fully qualified domain name.