diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-30 00:10:46 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-30 00:10:46 +0000 |
commit | e9c208d82b288226437fdef3c9ca4c5438d43abc (patch) | |
tree | c5894f95ad62254dda3547233b3ea0f072767af5 /src | |
parent | 9cdf0340ad29bb34dd4d0de433df55096b01ec80 (diff) |
Remainder of TYPE_OTHER metadata
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2983 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules.cpp | 1 | ||||
-rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index f6152ccf6..c7b7fadc1 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -282,6 +282,7 @@ void Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { }; void Module::ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline) { }; void Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, std::string extname) { }; void Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, std::string extname) { }; +void Module::OnSyncOtherMetaData(Module* proto, void* opaque) { }; void Module::OnDecodeMetaData(int target_type, void* target, std::string extname, std::string extdata) { }; void Module::ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata) { }; void Module::OnWallops(userrec* user, std::string text) { }; diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index caaaa775a..747bcd7b7 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1245,7 +1245,7 @@ class TreeSocket : public InspSocket /* Send everything else (channel modes, xlines etc) */ this->SendChannelModes(s); this->SendXLines(s); - FOREACH_MOD(I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)TreeProtocolModule,(void*)this,list[j])); + FOREACH_MOD(I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)TreeProtocolModule,(void*)this)); this->WriteLine("ENDBURST"); Srv->SendOpers("*** Finished bursting to \2"+s->GetName()+"\2."); } |