summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNaram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 22:01:18 +0000
committerNaram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 22:01:18 +0000
commit6395adff7939b5dbe798541c1c78dbe2cbee8b14 (patch)
tree3512372229de836c1ef5be537ecb6d2968e520bf /include
parentb78420a0ee3ab0ff212a2f77778a9ed8e66f6338 (diff)
Replaced anope_SendSVSMode_chan() with direct call to SendSVSModeChan() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1363 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
-rw-r--r--include/extern.h1
-rw-r--r--include/services.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/include/extern.h b/include/extern.h
index 5540513aa..6f6601865 100644
--- a/include/extern.h
+++ b/include/extern.h
@@ -1124,7 +1124,6 @@ E void anope_cmd_svinfo(); /* SVINFO */
E void anope_cmd_svsadmin(const char *server, int set); /* SVSADMIN */
E void anope_cmd_svsinfo(); /* SVSINFO */
E void anope_SendSVSJoin(const char *source, const char *nick,const char *chan, const char *param); /* SVSJOIN */
-E void anope_SendSVSMode_chan(const char *name, const char *mode, const char *nick); /* SVSMODE */
E void anope_SendSVSPart(const char *source, const char *nick,const char *chan); /* SVSPART */
E void anope_SendSWhois(const char *source, const char *who, const char *mask); /* SWHOIS */
E void anope_SendEOB(); /* EOB - end of burst */
diff --git a/include/services.h b/include/services.h
index ab7f949ae..db2ec93bc 100644
--- a/include/services.h
+++ b/include/services.h
@@ -1452,7 +1452,7 @@ class IRCDProto {
virtual void SendSZLine(const char *, const char *, const char *) { }
virtual void SendSGLine(const char *, const char *) { }
virtual void SendBanDel(const char *, const char *) { }
- virtual void SendSVSMode_chan(const char *, const char *, const char *) { }
+ virtual void SendSVSModeChan(const char *, const char *, const char *) { }
virtual void SendSVID(const char *, time_t) { }
virtual void SendUnregisteredNick(User *) { }
virtual void SendSVID2(User *, const char *) { }