Parcourir la source

[5122] Added a space before position

Francis Dupont il y a 8 ans
Parent
commit
43fac98e74
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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() << ")");
         }
     }