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

Comparing ircd-hybrid-8/src/send.c (file contents):
Revision 1309 by michael, Sun Mar 25 11:24:18 2012 UTC vs.
Revision 1474 by michael, Sun Jul 22 14:44:07 2012 UTC

# Line 177 | Line 177 | send_message_remote(struct Client *to, s
177                           from->name, from->username, from->host,
178                           to->from->name);
179  
180 <    sendto_server(NULL, NULL, CAP_TS6, NOCAPS,
180 >    sendto_server(NULL, CAP_TS6, NOCAPS,
181                    ":%s KILL %s :%s (%s[%s@%s] Ghosted %s)",
182                    me.id, to->name, me.name, to->name,
183                    to->username, to->host, to->from->name);
184 <    sendto_server(NULL, NULL, NOCAPS, CAP_TS6,
184 >    sendto_server(NULL, NOCAPS, CAP_TS6,
185                    ":%s KILL %s :%s (%s[%s@%s] Ghosted %s)",
186                    me.name, to->name, me.name, to->name,
187                    to->username, to->host, to->from->name);
# Line 458 | Line 458 | sendto_channel_butone(struct Client *one
458   * -davidt
459   */
460   void
461 < sendto_server(struct Client *one, const struct Channel *chptr,
461 > sendto_server(struct Client *one,
462                const unsigned int caps,
463                const unsigned int nocaps,
464                const char *format, ...)
# Line 468 | Line 468 | sendto_server(struct Client *one, const
468    char buffer[IRCD_BUFSIZE];
469    int len = 0;
470  
471  if (chptr && chptr->chname[0] != '#')
472    return;
473
471    va_start(args, format);
472    len = send_format(buffer, IRCD_BUFSIZE, format, args);
473    va_end(args);

Diff Legend

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