diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-30 12:16:23 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-30 12:16:23 +0000 |
commit | ae355704b0c7e952ea920a7e48c64f2934560e90 (patch) | |
tree | 59d7175372cb4cc14f33e1bf00c58d4b7526c478 /src | |
parent | 567135a702979c714a89b7fc986f929ea810ad07 (diff) |
Casting glitch
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2047 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 46683202d..df2939f76 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -467,7 +467,7 @@ class TreeSocket : public InspSocket strlcpy(c->topic,topic.c_str(),MAXTOPIC); strlcpy(c->setby,setby.c_str(),NICKMAX); c->topicset = ts; - WriteChannelWithServ(source.c_str(), c, "TOPIC %s :%s", c->name, c->topic) + WriteChannelWithServ((char*)source.c_str(), c, "TOPIC %s :%s", c->name, c->topic); } } |