diff options
| author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:49:01 +0000 |
|---|---|---|
| committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 21:49:01 +0000 |
| commit | c275bdf6f77f87b6d43b801369952d63171fc419 (patch) | |
| tree | 26330b2665e040db1aefa2ba556593c66db5603b /include | |
| parent | cd038ecb7a43912969e0199cb373f4c4eb1d7b43 (diff) | |
Replaced anope_SendSVSHold() with direct call to SendSVSHold() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1356 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
| -rw-r--r-- | include/extern.h | 1 | ||||
| -rw-r--r-- | include/services.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/extern.h b/include/extern.h index 4d51988ac..d1e35de29 100644 --- a/include/extern.h +++ b/include/extern.h @@ -1125,7 +1125,6 @@ E void anope_SendSGLine(const char *mask, const char *reason); /* SGL E void anope_SendSZLine(const char *mask, const char *reason, const char *whom); /* SZLINE */ E void anope_cmd_svinfo(); /* SVINFO */ E void anope_cmd_svsadmin(const char *server, int set); /* SVSADMIN */ -E void anope_SendSVSHOLD(const char *nick); /* SVSHOLD */ E void anope_SendSVSHOLDDel(const char *nick); /* SVSHOLD */ E void anope_cmd_svsinfo(); /* SVSINFO */ E void anope_SendSVSJoin(const char *source, const char *nick,const char *chan, const char *param); /* SVSJOIN */ diff --git a/include/services.h b/include/services.h index 4ca5b935a..9b4fdf488 100644 --- a/include/services.h +++ b/include/services.h @@ -1445,7 +1445,7 @@ class IRCDProto { } virtual void SendVhost(const char *, const char *, const char *) { } virtual void SendConnect() = 0; - virtual void SendSVSHOLD(const char *) { } + virtual void SendSVSHold(const char *) { } virtual void SendSVSHOLDDel(const char *) { } virtual void SendSGLineDel(const char *) { } virtual void SendSZLineDel(const char *) { } |
