From 05845c4ca24652de6d0f9e4ba3efc6b640eed1db Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 14 Feb 2022 17:14:03 +0100 Subject: [PATCH] Add a missing white-space in SvcParam::keyFromString() --- pdns/svc-records.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/svc-records.cc b/pdns/svc-records.cc index 0f610dead5..666064a49b 100644 --- a/pdns/svc-records.cc +++ b/pdns/svc-records.cc @@ -52,7 +52,7 @@ SvcParam::SvcParamKey SvcParam::keyFromString(const std::string& k, bool &generi catch (...) { } } - throw std::invalid_argument("SvcParam '" + k + "'is not recognized or in keyNNNN format"); + throw std::invalid_argument("SvcParam '" + k + "' is not recognized or in keyNNNN format"); } std::string SvcParam::keyToString(const SvcParam::SvcParamKey& k) { -- 2.47.2