ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/channel_mode.c
(Generate patch)

Comparing ircd-hybrid/trunk/src/channel_mode.c (file contents):
Revision 2296 by michael, Wed Jun 19 11:19:22 2013 UTC vs.
Revision 2475 by michael, Fri Oct 11 19:40:43 2013 UTC

# Line 1030 | Line 1030 | chm_op(struct Client *client_p, struct C
1030  
1031    opnick = parv[(*parn)++];
1032  
1033 <  if ((targ_p = find_chasing(client_p, source_p, opnick, NULL)) == NULL)
1033 >  if ((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
1034      return;
1035    if (!IsClient(targ_p))
1036      return;
# Line 1136 | Line 1136 | chm_hop(struct Client *client_p, struct
1136  
1137    opnick = parv[(*parn)++];
1138  
1139 <  if ((targ_p = find_chasing(client_p, source_p, opnick, NULL)) == NULL)
1139 >  if ((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
1140      return;
1141    if (!IsClient(targ_p))
1142      return;
# Line 1212 | Line 1212 | chm_voice(struct Client *client_p, struc
1212  
1213    opnick = parv[(*parn)++];
1214  
1215 <  if ((targ_p = find_chasing(client_p, source_p, opnick, NULL)) == NULL)
1215 >  if ((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
1216      return;
1217    if (!IsClient(targ_p))
1218      return;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines