Browse Source

[5122] Added a space before position

Francis Dupont 8 years ago
parent
commit
43fac98e74
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/dhcpsrv/parsers/dhcp_parsers.cc

+ 2 - 2
src/lib/dhcpsrv/parsers/dhcp_parsers.cc

@@ -1019,8 +1019,8 @@ SubnetConfigParser::createSubnet(ConstElementPtr params) {
         } catch (const BadValue& ex) {
             // addPool() can throw BadValue if the pool is overlapping or
             // is out of bounds for the subnet.
-            isc_throw(DhcpConfigError, ex.what() << "(" << params->getPosition()
-                      << ")");
+            isc_throw(DhcpConfigError,
+                      ex.what() << " (" << params->getPosition() << ")");
         }
     }