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

Comparing ircd-hybrid/trunk/src/channel.c (file contents):
Revision 4792 by michael, Tue Oct 28 12:44:43 2014 UTC vs.
Revision 4795 by michael, Tue Oct 28 13:11:47 2014 UTC

# Line 915 | Line 915 | channel_do_join_0(struct Client *source_
915  
916      sendto_server(source_p, NOCAPS, NOCAPS, ":%s PART %s",
917                    source_p->id, chptr->name);
918 <    sendto_channel_local(ALL_MEMBERS, 0, chptr, ":%s!%s@%s PART %s",
918 >    sendto_channel_local(0, chptr, ":%s!%s@%s PART %s",
919                           source_p->name, source_p->username,
920                           source_p->host, chptr->name);
921  
# Line 1079 | Line 1079 | channel_do_join(struct Client *source_p,
1079        sendto_channel_local_butone(NULL, 0, CAP_EXTENDED_JOIN, chptr, ":%s!%s@%s JOIN :%s",
1080                                    source_p->name, source_p->username,
1081                                    source_p->host, chptr->name);
1082 <      sendto_channel_local(ALL_MEMBERS, 0, chptr, ":%s MODE %s +nt",
1082 >      sendto_channel_local(0, chptr, ":%s MODE %s +nt",
1083                             me.name, chptr->name);
1084  
1085        if (source_p->away[0])
# Line 1162 | Line 1162 | channel_part_one_client(struct Client *s
1162    {
1163      sendto_server(source_p, NOCAPS, NOCAPS, ":%s PART %s :%s",
1164                    source_p->id, chptr->name, reason);
1165 <    sendto_channel_local(ALL_MEMBERS, 0, chptr, ":%s!%s@%s PART %s :%s",
1165 >    sendto_channel_local(0, chptr, ":%s!%s@%s PART %s :%s",
1166                           source_p->name, source_p->username,
1167                           source_p->host, chptr->name, reason);
1168    }
# Line 1170 | Line 1170 | channel_part_one_client(struct Client *s
1170    {
1171      sendto_server(source_p, NOCAPS, NOCAPS, ":%s PART %s",
1172                    source_p->id, chptr->name);
1173 <    sendto_channel_local(ALL_MEMBERS, 0, chptr, ":%s!%s@%s PART %s",
1173 >    sendto_channel_local(0, chptr, ":%s!%s@%s PART %s",
1174                           source_p->name, source_p->username,
1175                           source_p->host, chptr->name);
1176    }

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)