diff options
author | Peter Powell <petpow@saberuk.com> | 2019-12-14 18:37:23 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-12-14 18:38:13 +0000 |
commit | 6617d29b5227f962c348e638a373ebb78989b7ba (patch) | |
tree | e2d6da92be797d519cbd8e154d1ba97a8c656884 /modules/commands/os_dns.cpp | |
parent | a4ab6876c3f4afc087a3db90404bbdeb47525e6e (diff) |
Fix a bunch of broken indentation.
Diffstat (limited to 'modules/commands/os_dns.cpp')
-rw-r--r-- | modules/commands/os_dns.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_dns.cpp b/modules/commands/os_dns.cpp index 84092a9d3..ab252bf69 100644 --- a/modules/commands/os_dns.cpp +++ b/modules/commands/os_dns.cpp @@ -91,12 +91,12 @@ class DNSServer : public Serializable std::vector<Anope::string> ips; unsigned limit; /* wants to be in the pool */ - bool pooled; + bool pooled; /* is actually in the pool */ bool active; public: - std::set<Anope::string, ci::less> zones; + std::set<Anope::string, ci::less> zones; time_t repool; DNSServer(const Anope::string &sn) : Serializable("DNSServer"), server_name(sn), limit(0), pooled(false), active(false), repool(0) |