diff options
| author | 2013-08-22 13:41:11 +0200 | |
|---|---|---|
| committer | 2013-08-22 13:41:11 +0200 | |
| commit | 39d34b604259b17e2517fcddb5ee15198d7cb412 (patch) | |
| tree | d06f06cfc2cabac0d9329f10dd65cc26674579a8 /src/channels.cpp | |
| parent | Remove cmd_map from the core (diff) | |
| download | inspircd++-39d34b604259b17e2517fcddb5ee15198d7cb412.tar.gz inspircd++-39d34b604259b17e2517fcddb5ee15198d7cb412.tar.bz2 inspircd++-39d34b604259b17e2517fcddb5ee15198d7cb412.zip | |
Fix a few problems
- Fix configuration issue on systems without both GnuTLS and OpenSSL. (@SaberUK)
- Do not set Membership::modes in ForceJoin() incorrectly to privs
- Fix crash when spanningtree detects a configuration error on load
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index cab4fb739..afc569909 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -337,7 +337,6 @@ void Channel::ForceJoin(User* user, const std::string* privs, bool bursting, boo { // If the user was granted prefix modes (in the OnUserPreJoin hook, or he's a // remote user and his own server set the modes), then set them internally now - memb->modes = *privs; for (std::string::const_iterator i = privs->begin(); i != privs->end(); ++i) { ModeHandler* mh = ServerInstance->Modes->FindMode(*i, MODETYPE_CHANNEL); |
