]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
geoipbackend: Fix error message formatting
authorAki Tuomi <cmouse@cmouse.fi>
Tue, 2 Jan 2018 16:42:12 +0000 (18:42 +0200)
committerAki Tuomi <cmouse@cmouse.fi>
Wed, 14 Feb 2018 07:15:53 +0000 (09:15 +0200)
modules/geoipbackend/geoipbackend.cc

index 5d9def6eba447cc529b6f38ec9ebaa9eebfa2323..58d662099ea495d4bfec6c23561fe5693b9602a6 100644 (file)
@@ -368,8 +368,8 @@ void GeoIPBackend::lookup(const QType &qtype, const DNSName& qdomain, DNSPacket
 
   if (!d_result.empty()) {
     L<<Logger::Error<<
-       "Cannot have static record and CNAME at the same time" <<
-       "Please fix your configuration for \"" << qdomain << "\", so that" <<
+       "Cannot have static record and CNAME at the same time." <<
+       "Please fix your configuration for \"" << qdomain << "\", so that " <<
        "it can be resolved by GeoIP backend directly."<< std::endl;
     d_result.clear();
     return;