summaryrefslogtreecommitdiff
path: root/modules/m_svskill.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-12-04 19:25:39 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-12-04 19:25:39 +0000
commite4c50890c84f251ff980910b86830c3c4410e3a3 (patch)
tree7dc5bf9039b6bef079dfc2c81ecef4bc06d1ffc4 /modules/m_svskill.c
parent699a5f9df372e579272a5c6e0fafa8954d860861 (diff)
- m_svskill.c: replaced MyClient() test with MyConnect()
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2622 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_svskill.c')
-rw-r--r--modules/m_svskill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_svskill.c b/modules/m_svskill.c
index 58c59fc..04feec6 100644
--- a/modules/m_svskill.c
+++ b/modules/m_svskill.c
@@ -81,7 +81,7 @@ ms_svskill(struct Client *client_p, struct Client *source_p, int parc, char *par
if (ts && (ts != target_p->tsinfo))
return;
- if (MyClient(target_p))
+ if (MyConnect(target_p))
{
strlcpy(reason + 11, comment, sizeof(reason) - 11);
exit_client(target_p, target_p, reason);