]> granicus.if.org Git - pdns/commitdiff
fix bool comparison, thanks @xbgmsharp
authorPeter van Dijk <peter.van.dijk@netherlabs.nl>
Thu, 19 Jun 2014 09:21:53 +0000 (11:21 +0200)
committerPeter van Dijk <peter.van.dijk@netherlabs.nl>
Thu, 19 Jun 2014 09:21:53 +0000 (11:21 +0200)
modules/gpgsqlbackend/gpgsqlbackend.cc

index 64b08f43a2a35362f0f180bb78cffdad813d1316..15502268bc310b2d351cae25e36801c98a8babc1 100644 (file)
@@ -113,7 +113,7 @@ public:
     declare(suffix,"delete-tsig-key-query","", "delete from tsigkeys where name='%s'");
     declare(suffix,"get-tsig-keys-query","", "select name,algorithm, secret from tsigkeys");
 
-    declare(suffix, "get-all-domains-query", "Retrieve all domains", "select domains.id, domains.name, records.content, domains.type, domains.master, domains.notified_serial, domains.last_check from domains LEFT JOIN records ON records.domain_id=domains.id AND records.type='SOA' AND records.name=domains.name WHERE records.disabled=0 OR %d::bool");
+    declare(suffix, "get-all-domains-query", "Retrieve all domains", "select domains.id, domains.name, records.content, domains.type, domains.master, domains.notified_serial, domains.last_check from domains LEFT JOIN records ON records.domain_id=domains.id AND records.type='SOA' AND records.name=domains.name WHERE records.disabled=false OR %d::bool");
 
     declare(suffix, "list-comments-query", "", "SELECT domain_id,name,type,modified_at,account,comment FROM comments WHERE domain_id=%d");
     declare(suffix, "insert-comment-query", "", "INSERT INTO comments (domain_id, name, type, modified_at, account, comment) VALUES (%d, E'%s', E'%s', %d, E'%s', E'%s')");