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

Comparing ircd-hybrid/trunk/modules/core/m_kill.c (file contents):
Revision 2012 by michael, Sun May 12 14:47:26 2013 UTC vs.
Revision 2037 by michael, Tue May 14 19:08:13 2013 UTC

# Line 145 | Line 145 | mo_kill(struct Client *client_p, struct
145     * that have been around for ever, for no reason..
146     */
147    sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
148 <                       "Received KILL message for %s. From %s Path: %s (%s)",
149 <                       target_p->name, source_p->name, me.name, reason);
148 >                       "Received KILL message for %s!%s@%s[%s/%s]. From %s Path: %s (%s)",
149 >                       target_p->name, target_p->username, target_p->host,
150 >                       target_p->servptr->name,
151 >                       target_p->servptr->id[0] ? target_p->servptr->id : "<>",
152 >                       source_p->name, me.name, reason);
153  
154    ilog(LOG_TYPE_KILL, "KILL From %s For %s Path %s (%s)",
155         source_p->name, target_p->name, me.name, reason);
# Line 272 | Line 275 | ms_kill(struct Client *client_p, struct
275     */
276    if (HasUMode(source_p, UMODE_OPER)) /* send it normally */
277      sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
278 <                         "Received KILL message for %s. From %s Path: %s!%s!%s!%s %s",
279 <                         target_p->name, source_p->name, source_p->servptr->name,
280 <                         source_p->host, source_p->username, source_p->name, reason);
278 >                         "Received KILL message for %s!%s@%s[%s/%s]. From %s Path: %s!%s!%s!%s %s",
279 >                         target_p->name, target_p->username, target_p->host,
280 >                         target_p->servptr->name,
281 >                         target_p->servptr->id[0] ? target_p->servptr->id : "<>", source_p->name,
282 >                         source_p->servptr->name, source_p->host, source_p->username,
283 >                         source_p->name, reason);
284    else
285      sendto_realops_flags(UMODE_SKILL, L_ALL, SEND_NOTICE,
286 <                         "Received KILL message for %s. From %s %s",
287 <                         target_p->name, source_p->name, reason);
286 >                         "Received KILL message for %s!%s@%s[%s/%s]. From %s %s",
287 >                         target_p->name, target_p->username, target_p->host,
288 >                         target_p->servptr->name,
289 >                         target_p->servptr->id[0] ? target_p->servptr->id : "<>",
290 >                         source_p->name, reason);
291  
292    ilog(LOG_TYPE_KILL, "KILL From %s For %s Path %s %s",
293         source_p->name, target_p->name, source_p->name, reason);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines