aboutsummaryrefslogtreecommitdiffstats
path: root/src/dns.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-08-03 18:55:19 +0000
committerGravatar brain2006-08-03 18:55:19 +0000
commitb14375407cbaa7ff62195061d8502cb3786942ae (patch)
tree1df10578e772045d8d6b336761b3cefc0fbbd5c8 /src/dns.cpp
parentExtra stuff for forcing a v4 or v6 lookup (diff)
Its ip6.arpa, not ip6.int?
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4680 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 2c4cd807b..852c9282e 100644
--- a/src/dns.cpp
+++ b/src/dns.cpp
@@ -482,7 +482,7 @@ void DNS::MakeIP6Int(char* query, const in6_addr *ip)
*query++ = hex[(ip->s6_addr[index] & 0xF0) >> 4];
*query++ = '.'; /* Seperator */
}
- strcpy(query,"ip6.int"); /* Suffix the string */
+ strcpy(query,"ip6.arpa"); /* Suffix the string */
}
/* Return the next id which is ready, and the result attached to it */