Browse Source

[3899] Removed extra space from error message

Francis Dupont 10 years ago
parent
commit
2b6f97820d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dhcpsrv/subnet.cc

+ 1 - 1
src/lib/dhcpsrv/subnet.cc

@@ -272,7 +272,7 @@ Subnet::addPool(const PoolPtr& pool) {
                       << Lease::typeToText(pool->getType())
                       << ", with the following address range: "
                       << pool->getFirstAddress() << "-"
-                      << pool->getLastAddress() << " does not match "
+                      << pool->getLastAddress() << " does not match"
                       << " the prefix of a subnet: "
                       << prefix_ << "/" << static_cast<int>(prefix_len_)
                       << " to which it is being added");