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

Comparing ircd-hybrid/trunk/src/s_user.c (file contents):
Revision 3171 by michael, Sun Mar 16 11:51:48 2014 UTC vs.
Revision 3176 by michael, Tue Mar 18 20:00:16 2014 UTC

# Line 476 | Line 476 | register_remote_user(struct Client *sour
476                           "No server %s for user %s[%s@%s] from %s",
477                           server, source_p->name, source_p->username,
478                           source_p->host, source_p->from->name);
479 <    kill_client(source_p->from, source_p, "%s (Server doesn't exist)", me.name);
479 >    sendto_one(source_p->from,
480 >               ":%s KILL %s :%s (Ghosted, server %s doesn't exist)",
481 >               ID(&me), ID(source_p), me.name, server);
482  
483      AddFlag(source_p, FLAGS_KILLED);
484      exit_client(source_p, "Ghosted Client");
# Line 490 | Line 492 | register_remote_user(struct Client *sour
492                           source_p->from->name, source_p->name, source_p->username,
493                           source_p->host, source_p->servptr->name,
494                           target_p->name, target_p->from->name);
495 <    kill_client(source_p->from, source_p,
496 <                "%s (NICK from wrong direction (%s != %s))",
497 <                me.name, source_p->servptr->name, target_p->from->name);
495 >    sendto_one(source_p->from,
496 >               ":%s KILL %s :%s (NICK from wrong direction (%s != %s))",
497 >               ID(&me), ID(source_p), me.name, source_p->servptr->name,
498 >               target_p->from->name);
499 >
500      AddFlag(source_p, FLAGS_KILLED);
501      exit_client(source_p, "USER server wrong direction");
502      return;

Diff Legend

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