diff options
author | Adam <Adam@anope.org> | 2013-02-15 18:19:38 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-02-15 18:32:06 -0500 |
commit | 73099b82e8619a87f894a0f787a582ee973bd177 (patch) | |
tree | 4097684d99ff62d953dc4fe4130030cf66a6405f /modules/commands/os_dns.cpp | |
parent | fc1d7ea89b5beed96022499fe7fa86bef7cf2aad (diff) |
Fixed unserializing servers in dns zones
Diffstat (limited to 'modules/commands/os_dns.cpp')
-rw-r--r-- | modules/commands/os_dns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/os_dns.cpp b/modules/commands/os_dns.cpp index 52a6995fc..d690ae55a 100644 --- a/modules/commands/os_dns.cpp +++ b/modules/commands/os_dns.cpp @@ -62,7 +62,7 @@ struct DNSZone : Serializable for (unsigned count = 0; true; ++count) { Anope::string server_str; - data["server" + stringify(count++)] >> server_str; + data["server" + stringify(count)] >> server_str; if (server_str.empty()) break; zone->servers.insert(server_str); |