diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-02 00:21:31 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-02 00:21:31 +0000 |
commit | 8f31ffb7d0216f90d5fc51bb26ae9e238c34385b (patch) | |
tree | 8f8d2d3578779bc95eebdeb66509744f7b2d8b1c | |
parent | 08511e288a3242b9b9336d306ac197ed5da96749 (diff) |
Om's ip is annoying to parse.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2096 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/dns.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dns.cpp b/src/dns.cpp index b5488b960..04aa93b6c 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -717,7 +717,11 @@ std::string DNS::GetResultIP() } if (result) { - sprintf(r,"%u.%u.%u.%u",result[0],result[1],result[2],result[3]); + unsigned long oct1 = (unsigned)result[0]; + unsigned long oct2 = (unsigned)result[1]; + unsigned long oct3 = (unsigned)result[2]; + unsigned long oct4 = (unsigned)result[3]; + sprintf(r,"%lu.%lu.%lu.%lu",oct1,oct2,oct3,oct4); return r; } else |