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 3170 by michael, Sun Mar 16 10:58:17 2014 UTC vs.
Revision 3174 by michael, Mon Mar 17 18:56:20 2014 UTC

# Line 160 | Line 160 | send_message_remote(struct Client *to, s
160  
161      sendto_server(NULL, NOCAPS, NOCAPS,
162                    ":%s KILL %s :%s (%s[%s@%s] Ghosted %s)",
163 <                  me.id, to->name, me.name, to->name,
163 >                  me.id, to->id, me.name, to->name,
164                    to->username, to->host, to->from->name);
165  
166      AddFlag(to, FLAGS_KILLED);
# Line 169 | Line 169 | send_message_remote(struct Client *to, s
169        sendto_one_numeric(from, &me, ERR_GHOSTEDCLIENT, to->name,
170                           to->username, to->host, to->from);
171  
172 <    exit_client(to, &me, "Ghosted client");
172 >    exit_client(to, "Ghosted client");
173      return;
174    }
175  
# Line 712 | Line 712 | sendto_match_butone(struct Client *one,
712    {
713      struct Client *client_p = ptr->data;
714  
715 <    if ((!one || client_p != one->from)&& !IsDefunct(client_p) &&
715 >    if ((!one || client_p != one->from) && !IsDefunct(client_p) &&
716          match_it(client_p, mask, what))
717        send_message(client_p, local_buf);
718    }

Diff Legend

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