diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-15 23:30:50 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-15 23:30:50 +0000 |
commit | 4a8f418f14d9aa9d7ed262d8348adb103edd256e (patch) | |
tree | d6403fee6f238f2336095de833176fc009029b8d | |
parent | dcc7d240f727a54547260caf27416c5e1dfa4600 (diff) |
- Fixed previous commit to ms_locops()
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2827 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | modules/m_locops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_locops.c b/modules/m_locops.c index 95e1ad0..73d39cd 100644 --- a/modules/m_locops.c +++ b/modules/m_locops.c @@ -75,7 +75,7 @@ ms_locops(struct Client *client_p, struct Client *source_p, if (parc != 3 || EmptyString(parv[2])) return 0; - sendto_match_servs(source_p, parv[1], CAP_KLN, "LOCOPS %s :%s", + sendto_match_servs(source_p, parv[1], CAP_CLUSTER, "LOCOPS %s :%s", parv[1], parv[2]); if (!IsClient(source_p) || match(parv[1], me.name)) |