]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3899] Added missing space in error message
authorFrancis Dupont <fdupont@isc.org>
Sun, 14 Jun 2015 09:29:04 +0000 (11:29 +0200)
committerFrancis Dupont <fdupont@isc.org>
Sun, 14 Jun 2015 09:29:04 +0000 (11:29 +0200)
src/lib/dhcp/option4_client_fqdn.cc

index 97c4bb3c5fba8a5c0bb1b3e3ebb78c796e6d1546..0005eecd7e8256857362e956cd18fd1d002eb8b4 100644 (file)
@@ -386,7 +386,7 @@ Option4ClientFqdn::setFlag(const uint8_t flag, const bool set_flag) {
         isc_throw(InvalidOption4FqdnFlags, "invalid DHCPv4 Client FQDN"
                   << " Option flag " << std::hex
                   << static_cast<int>(flag) << std::dec
-                  << "is being set. Expected combination of E, N, S and O");
+                  << " is being set. Expected combination of E, N, S and O");
     }
 
     // Copy the current flags into local variable. That way we will be able