From 4ef4a31f44bb5049d53f03711b41d54c349e147e Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Thu, 15 Aug 2019 14:33:46 -0400 Subject: [PATCH] [#805,!12-p] Added comma to error message src/lib/dhcpsrv/csv_lease_file4.cc --- src/lib/dhcpsrv/csv_lease_file4.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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). -- 2.47.2