summaryrefslogtreecommitdiff
path: root/modules/m_services.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_services.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_services.c')
-rw-r--r--modules/m_services.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/m_services.c b/modules/m_services.c
index 12b52f5..d8881f4 100644
--- a/modules/m_services.c
+++ b/modules/m_services.c
@@ -56,7 +56,7 @@ m_nickserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -68,7 +68,7 @@ m_nickserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "NickServ");
}
@@ -83,7 +83,7 @@ m_chanserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -95,7 +95,7 @@ m_chanserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "ChanServ");
}
@@ -110,7 +110,7 @@ m_memoserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -122,7 +122,7 @@ m_memoserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "MemoServ");
}
@@ -137,7 +137,7 @@ m_operserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -149,7 +149,7 @@ m_operserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "OperServ");
}
@@ -164,7 +164,7 @@ m_statserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -176,7 +176,7 @@ m_statserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "StatServ");
}
@@ -191,7 +191,7 @@ m_helpserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -203,7 +203,7 @@ m_helpserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "HelpServ");
}
@@ -218,7 +218,7 @@ m_botserv(struct Client *client_p, struct Client *source_p,
if (EmptyString(parv[1]))
{
- sendto_one(source_p, ERR_NOTEXTTOSEND,
+ sendto_one(source_p, form_str(ERR_NOTEXTTOSEND),
me.name, source_p->name);
return;
}
@@ -230,7 +230,7 @@ m_botserv(struct Client *client_p, struct Client *source_p,
return;
}
- sendto_one(source_p, ERR_SERVICESDOWN,
+ sendto_one(source_p, form_str(ERR_SERVICESDOWN),
me.name, source_p->name, "BotServ");
}