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/trunk/src/send.c (file contents):
Revision 3178 by michael, Wed Mar 19 18:27:44 2014 UTC vs.
Revision 3186 by michael, Thu Mar 20 18:09:34 2014 UTC

# Line 409 | Line 409 | sendto_channel_butone(struct Client *one
409    else
410      dbuf_put_fmt(local_buf, ":%s!%s@%s ", from->name, from->username, from->host);
411  
412 <  dbuf_put_fmt(remote_buf, ":%s ", ID(from));
412 >  dbuf_put_fmt(remote_buf, ":%s ", from->id);
413  
414    va_start(alocal, pattern);
415    va_start(aremote, pattern);
# Line 698 | Line 698 | sendto_match_butone(struct Client *one,
698    local_buf = dbuf_alloc(), remote_buf = dbuf_alloc();
699  
700    dbuf_put_fmt(local_buf, ":%s!%s@%s ", from->name, from->username, from->host);
701 <  dbuf_put_fmt(remote_buf, ":%s ", ID(from));
701 >  dbuf_put_fmt(remote_buf, ":%s ", from->id);
702  
703    va_start(alocal, pattern);
704    va_start(aremote, pattern);
# Line 774 | Line 774 | sendto_match_servs(struct Client *source
774    buff_suid = dbuf_alloc();
775  
776    va_start(args, pattern);
777 <  dbuf_put_fmt(buff_suid, ":%s ", ID(source_p));
777 >  dbuf_put_fmt(buff_suid, ":%s ", source_p->id);
778    dbuf_put_args(buff_suid, pattern, args);
779    va_end(args);
780  

Diff Legend

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