]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Exception whitespace nits
authorPieter Lexis <pieter.lexis@powerdns.com>
Mon, 4 Jan 2016 12:21:23 +0000 (13:21 +0100)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 12 Jan 2016 16:02:21 +0000 (17:02 +0100)
pdns/backends/gsql/gsqlbackend.cc

index 0c957b0d9d3a61f1a87f3d24e3a47a3499e920a1..f3eaa42a84fbda1dbdd7365a54bb18eb49e07a77 100644 (file)
@@ -1008,7 +1008,7 @@ void GSQLBackend::lookup(const QType &qtype,const DNSName &qname, DNSPacket *pkt
       execute();
   }
   catch(SSqlException &e) {
-    throw DBException("GSQLBackend lookup query:"+e.txtReason());
+    throw DBException("GSQLBackend lookup query: "+e.txtReason());
   }
 
   d_qname=qname;
@@ -1245,7 +1245,7 @@ void GSQLBackend::getAllDomains(vector<DomainInfo> *domains, bool include_disabl
     d_getAllDomainsQuery_stmt->reset();
   }
   catch (SSqlException &e) {
-    throw DBException("Database error trying to retrieve all domains:" + e.txtReason());
+    throw DBException("Database error trying to retrieve all domains: " + e.txtReason());
   }
 }