]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Add missing space in error message. 16195/head
authorMiod Vallat <miod.vallat@powerdns.com>
Mon, 29 Sep 2025 14:30:50 +0000 (16:30 +0200)
committerMiod Vallat <miod.vallat@powerdns.com>
Mon, 29 Sep 2025 14:30:50 +0000 (16:30 +0200)
Signed-off-by: Miod Vallat <miod.vallat@powerdns.com>
modules/pipebackend/pipebackend.cc

index e6b6d3d539faf6e4aeee95b55ba26b664f7a6555..da430d24a61c3460fd185da48d8cda60e2f2cf8c 100644 (file)
@@ -332,7 +332,7 @@ bool PipeBackend::get(DNSResourceRecord& r)
         case QType::MX:
         case QType::SRV:
           if (parts.size() < 8) {
-            throwTooShortDataError("of MX/SRV record");
+            throwTooShortDataError(" of MX/SRV record");
           }
           r.content = parts[6] + " " + parts[7];
           break;