summaryrefslogtreecommitdiff
path: root/modules/m_connect.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-19 19:50:27 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-19 19:50:27 +0000
commit9d26c71414ef009975676e2037202ad99f9ca40c (patch)
tree87cf77340dec3ec70f30c6480c296dff534c5143 /modules/m_connect.c
parentd014cc6c4d39b7ff37a5bfb4640c1af3a87df699 (diff)
- Revert to -r1831
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1834 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_connect.c')
-rw-r--r--modules/m_connect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/m_connect.c b/modules/m_connect.c
index 4e67cd6..1d27f53 100644
--- a/modules/m_connect.c
+++ b/modules/m_connect.c
@@ -60,7 +60,7 @@ mo_connect(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NEEDMOREPARAMS,
+ sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
me.name, source_p->name, "CONNECT");
return;
}
@@ -69,7 +69,7 @@ mo_connect(struct Client *client_p, struct Client *source_p,
{
if (!HasOFlag(source_p, OPER_FLAG_REMOTE))
{
- sendto_one(source_p, ERR_NOPRIVS,
+ sendto_one(source_p, form_str(ERR_NOPRIVS),
me.name, source_p->name, "connect");
return;
}
@@ -189,7 +189,7 @@ ms_connect(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NEEDMOREPARAMS,
+ sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
me.name, source_p->name, "CONNECT");
return;
}