Browse Source

[3899] Added missing spaces in error message

Francis Dupont 10 years ago
parent
commit
a88ed0d74c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/dhcp/option6_client_fqdn.cc

+ 2 - 2
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.