diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-12-24 18:37:50 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-12-24 18:37:50 +0000 |
commit | aba991a42dc63df339e325bbe114574e4f61bee7 (patch) | |
tree | c65e7f44dc3520fce5de9ecc37b0e43445950a66 /modules/m_webirc.c | |
parent | fe9e3a9bb1cfadfa18e3c193c71b0c0cb6efef42 (diff) |
- m_webirc.c: instead of silently dropping WEBIRC requests from
registered clients, simply send ERR_ALREADYREGISTRED
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2711 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_webirc.c')
-rw-r--r-- | modules/m_webirc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_webirc.c b/modules/m_webirc.c index 9981eaa..5a96eb2 100644 --- a/modules/m_webirc.c +++ b/modules/m_webirc.c @@ -131,7 +131,7 @@ mr_webirc(struct Client *client_p, struct Client *source_p, int parc, char *parv static struct Message webirc_msgtab = { "WEBIRC", 0, 0, 5, MAXPARA, MFLG_SLOW, 0, - { mr_webirc, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore } + { mr_webirc, m_registered, m_ignore, m_ignore, m_registered, m_ignore } }; static void |