summaryrefslogtreecommitdiff
path: root/src/dns.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-05-03 09:23:47 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-05-03 09:23:47 +0000
commit7eb84435ee644dc174b7914263c47db51e2e0e7b (patch)
tree4ffe8863021712e635bcde96a27fed64cd3e00c0 /src/dns.cpp
parent858cc30b984210a60f2b0650562b424140f83fe8 (diff)
Return false was missing
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3928 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dns.cpp')
-rw-r--r--src/dns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dns.cpp b/src/dns.cpp
index 1da703c70..ab244a049 100644
--- a/src/dns.cpp
+++ b/src/dns.cpp
@@ -748,7 +748,7 @@ bool DNS::ForwardLookupWithFD(const std::string &host, int &fd)
fd = this->myfd;
if (this->myfd == -1)
{
-
+ return false;
}
log(DEBUG,"DNS: ForwardLookupWithFD, fd=%d",this->myfd);
if (ServerInstance && ServerInstance->SE)