]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#805,!12-p] Added comma to error message
authorThomas Markwalder <tmark@isc.org>
Thu, 15 Aug 2019 18:33:46 +0000 (14:33 -0400)
committerThomas Markwalder <tmark@isc.org>
Fri, 16 Aug 2019 15:37:08 +0000 (11:37 -0400)
    src/lib/dhcpsrv/csv_lease_file4.cc

src/lib/dhcpsrv/csv_lease_file4.cc

index 398e4af18a8b27870ea11b1d58c35cdc476dea89..fa1e11c6564a07861b8c92e0fa49a868903d609c 100644 (file)
@@ -45,7 +45,7 @@ CSVLeaseFile4::append(const Lease4& lease) {
 
         isc_throw(BadValue, "Lease4: " << lease.addr_.toText() << ", state: "
                   << Lease::basicStatesToText(lease.state_)
-                  << " has neither hardware address or client id");
+                  << ", has neither hardware address or client id");
 
     }
 
@@ -124,7 +124,7 @@ CSVLeaseFile4::next(Lease4Ptr& lease) {
             (state != Lease::STATE_DECLINED)) {
             isc_throw(BadValue, "Lease4: " << addr.toText() << ", state: "
                       << Lease::basicStatesToText(state)
-                      << " has neither hardware address or client id");
+                      << ", has neither hardware address or client id");
         }
 
         // Get the user context (can be NULL).