diff options
| author | 2013-12-16 02:39:31 +0000 | |
|---|---|---|
| committer | 2014-01-04 19:31:29 +0100 | |
| commit | 428e8f4f693192a527065e5488bbc7fceb938b6f (patch) | |
| tree | 00dc71a91e49531e4c37c2c429ddc24db026780b /src/modules/m_spanningtree/utils.cpp | |
| parent | m_showwhois Update settings on rehash (diff) | |
Fix some Windows-related problems.
- Fix an error relating to the unavailability of std::back_inserter.
- Fix loading configuration files when using relative paths.
- Fix two methods in hashcomp being exported twice.
- Remove some unimportant error messages.
Diffstat (limited to 'src/modules/m_spanningtree/utils.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/utils.cpp b/src/modules/m_spanningtree/utils.cpp index c9abbd008..dbd246ffe 100644 --- a/src/modules/m_spanningtree/utils.cpp +++ b/src/modules/m_spanningtree/utils.cpp @@ -227,7 +227,7 @@ void SpanningTreeUtilities::RefreshIPCache() continue; } - std::copy(L->AllowMasks.begin(), L->AllowMasks.end(), std::back_inserter(ValidIPs)); + ValidIPs.insert(ValidIPs.end(), L->AllowMasks.begin(), L->AllowMasks.end()); irc::sockets::sockaddrs dummy; bool ipvalid = irc::sockets::aptosa(L->IPAddr, L->Port, dummy); |
