From: Thomas Markwalder Date: Thu, 15 Aug 2019 18:33:46 +0000 (-0400) Subject: [#805,!12-p] Added comma to error message X-Git-Tag: Kea-1.5.0-P1~7 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=4ef4a31f44bb5049d53f03711b41d54c349e147e;p=thirdparty%2Fkea.git [#805,!12-p] Added comma to error message src/lib/dhcpsrv/csv_lease_file4.cc --- diff --git a/src/lib/dhcpsrv/csv_lease_file4.cc b/src/lib/dhcpsrv/csv_lease_file4.cc index 398e4af18a..fa1e11c656 100644 --- a/src/lib/dhcpsrv/csv_lease_file4.cc +++ b/src/lib/dhcpsrv/csv_lease_file4.cc @@ -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).