From: Pieter Lexis Date: Mon, 4 Jan 2016 12:21:23 +0000 (+0100) Subject: Exception whitespace nits X-Git-Tag: dnsdist-1.0.0-alpha2~44^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4aceffd34dabecdbeeb4b17aafd3e699737f4f00;p=pdns Exception whitespace nits --- diff --git a/pdns/backends/gsql/gsqlbackend.cc b/pdns/backends/gsql/gsqlbackend.cc index 0c957b0d9..f3eaa42a8 100644 --- a/pdns/backends/gsql/gsqlbackend.cc +++ b/pdns/backends/gsql/gsqlbackend.cc @@ -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 *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()); } }