diff options
| author | 2007-07-01 12:06:15 +0000 | |
|---|---|---|
| committer | 2007-07-01 12:06:15 +0000 | |
| commit | 8199f4dd3e64450d464c0ac97b34d90c165df066 (patch) | |
| tree | 21c060d81d8ea6c76ba215a9b40845c65722d741 /src/dns.cpp | |
| parent | Split hostmask with XLines::IdentSplit then re-inject into check for proper d... (diff) | |
| download | inspircd++-8199f4dd3e64450d464c0ac97b34d90c165df066.tar.gz inspircd++-8199f4dd3e64450d464c0ac97b34d90c165df066.tar.bz2 inspircd++-8199f4dd3e64450d464c0ac97b34d90c165df066.zip | |
Optimizations and code tidyups. QA please check that svsnick and other forced nick changes still work right after this
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7416 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dns.cpp')
| -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 c3e909700..fab9631b7 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -756,7 +756,7 @@ DNSResult DNS::GetResult() * as the last parameter on the line with a value ":1". */ if (*formatted == ':') - resultstr = "0" + resultstr; + resultstr.insert(0, "0"); } break; |
