summaryrefslogtreecommitdiff
path: root/src/coremods
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-01-20 12:24:35 +0000
committerPeter Powell <petpow@saberuk.com>2018-01-20 12:24:35 +0000
commitb7ecd18b73a301b28c61e3ac62cd6f7e4ed5c43e (patch)
treed4df98eff2af90a0d9fa7c5387037f76efc09ed8 /src/coremods
parentb18e6b5556f2deedf6ebf154477c4d69dcf02638 (diff)
Pass an irc::socket::sockaddrs to SocketEngine::SendTo().
Diffstat (limited to 'src/coremods')
-rw-r--r--src/coremods/core_dns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_dns.cpp b/src/coremods/core_dns.cpp
index 1040bb036..0a835a67a 100644
--- a/src/coremods/core_dns.cpp
+++ b/src/coremods/core_dns.cpp
@@ -502,7 +502,7 @@ class MyManager : public Manager, public Timer, public EventHandler
// Update name in the original request so question checking works for PTR queries
req->question.name = p.question.name;
- if (SocketEngine::SendTo(this, buffer, len, 0, &this->myserver.sa, this->myserver.sa_size()) != len)
+ if (SocketEngine::SendTo(this, buffer, len, 0, this->myserver) != len)
throw Exception("DNS: Unable to send query");
// Add timer for timeout