From: Ruben Kerkhof Date: Wed, 7 Aug 2013 14:38:55 +0000 (+0200) Subject: Fix typo in option description X-Git-Tag: rec-3.6.0-rc1~530^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F937%2Fhead;p=thirdparty%2Fpdns.git Fix typo in option description --- diff --git a/modules/gmysqlbackend/gmysqlbackend.cc b/modules/gmysqlbackend/gmysqlbackend.cc index a79ac5256b..ba5cc095f1 100644 --- a/modules/gmysqlbackend/gmysqlbackend.cc +++ b/modules/gmysqlbackend/gmysqlbackend.cc @@ -48,7 +48,7 @@ public: declare(suffix,"password","Pdns backend password to connect with",""); declare(suffix,"group", "Pdns backend MySQL 'group' to connect as", "client"); declare(suffix,"dnssec","Assume DNSSEC Schema is in place","no"); - declare(suffix,"innodb-read-committed","Use InnoDB READ-COMMITTED tranaction isolation level","yes"); + declare(suffix,"innodb-read-committed","Use InnoDB READ-COMMITTED transaction isolation level","yes"); declare(suffix,"basic-query","Basic query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name='%s'"); declare(suffix,"id-query","Basic with ID query","select content,ttl,prio,type,domain_id,name from records where type='%s' and name='%s' and domain_id=%d");