diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-03 18:55:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-03 18:55:19 +0000 |
commit | b14375407cbaa7ff62195061d8502cb3786942ae (patch) | |
tree | 1df10578e772045d8d6b336761b3cefc0fbbd5c8 | |
parent | 062bd08863b32c0738ec0352abf8568ae24c1da9 (diff) |
Its ip6.arpa, not ip6.int?
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4680 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/dns.cpp | 2 |
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 */ |