summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/main.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-01-04 19:43:04 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-01-04 19:43:04 +0100
commita500ec70bb82151c8fcf7443b4645640233952e8 (patch)
treee3068140d44bed3c8e35a0d24846bc40dcb14330 /src/modules/m_spanningtree/main.cpp
parentb5bc73e31026ee2087f0ceb5c7d9f99bf3c288a6 (diff)
Change type of snomask parameter to char in ProtocolInterface::SendSNONotice()
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r--src/modules/m_spanningtree/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index 39ff222c5..8d8a51ede 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -631,7 +631,7 @@ void ModuleSpanningTree::ReadConfig(ConfigStatus& status)
msg.append(e.GetReason());
ServerInstance->SNO->WriteToSnoMask('l', msg);
if (status.srcuser && !IS_LOCAL(status.srcuser))
- ServerInstance->PI->SendSNONotice("L", msg);
+ ServerInstance->PI->SendSNONotice('L', msg);
}
}