diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-08 19:22:59 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-08 19:22:59 +0000 |
commit | 2a354af62a04a146ae72b0922fecbab9004f25e8 (patch) | |
tree | 7fa4e2fa5f51b5e39ac53c2d80fbfddbc5663904 /src/dns.cpp | |
parent | 816cdd3c089b0fd997b13f469ef1470ea25e53aa (diff) |
Fix for uninitialized var in valgrind output
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5172 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dns.cpp')
-rw-r--r-- | src/dns.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dns.cpp b/src/dns.cpp index d25a5e102..d01135a12 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -242,6 +242,10 @@ DNS::DNS(InspIRCd* Instance) : ServerInstance(Instance) */ currid = 0; + /* By default we're not munging ip's + */ + ip6munge = false; + /* Clear the namesever address */ memset(&myserver,0,sizeof(insp_inaddr)); |