diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-12-19 07:16:17 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-12-19 07:16:17 +0100 |
commit | ae5da1138980b1f1e370b81942d53254dab2b821 (patch) | |
tree | 5fdbb1bdc8bf2e63e1cb4b50e3b2c10f607d1096 /modules/protocol/inspircd12.cpp | |
parent | e6544a06f4087c3f1d3c8225e7a0fab232ec660d (diff) |
irc2sql: fixed not storing ssl information on inspircd
Diffstat (limited to 'modules/protocol/inspircd12.cpp')
-rw-r--r-- | modules/protocol/inspircd12.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd12.cpp b/modules/protocol/inspircd12.cpp index ab513992b..a21bb37dc 100644 --- a/modules/protocol/inspircd12.cpp +++ b/modules/protocol/inspircd12.cpp @@ -1098,8 +1098,8 @@ struct IRCDMessageMetadata : IRCDMessage if ((pos2 - pos1) >= 32) // inspircd supports md5 and sha1 fingerprint hashes -> size 32 or 40 bytes. { u->fingerprint = data.substr(pos1, pos2 - pos1); - FOREACH_MOD(OnFingerprint, (u)); } + FOREACH_MOD(OnFingerprint, (u)); } } else if (params[0][0] == '#') |