Browse Source

[3899] Added missing space in error message

Francis Dupont 10 years ago
parent
commit
26354f4290
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/tsigrecord.cc

+ 1 - 1
src/lib/dns/tsigrecord.cc

@@ -64,7 +64,7 @@ castToTSIGRdata(const rdata::Rdata& rdata) {
     if (!tsig_rdata) {
     if (!tsig_rdata) {
         isc_throw(DNSMessageFORMERR,
         isc_throw(DNSMessageFORMERR,
                   "TSIG record is being constructed from "
                   "TSIG record is being constructed from "
-                  "incompatible RDATA:" << rdata.toText());
+                  "incompatible RDATA: " << rdata.toText());
     }
     }
     return (*tsig_rdata);
     return (*tsig_rdata);
 }
 }