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

Comparing ircd-hybrid/trunk/modules/m_etrace.c (file contents):
Revision 9077 by michael, Sat Oct 12 20:15:17 2019 UTC vs.
Revision 9374 by michael, Sat May 9 20:54:46 2020 UTC

# Line 1 | Line 1
1   /*
2   *  ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3   *
4 < *  Copyright (c) 2004-2019 ircd-hybrid development team
4 > *  Copyright (c) 2004-2020 ircd-hybrid development team
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 132 | Line 132 | mo_etrace(struct Client *source_p, int p
132   static struct Message etrace_msgtab =
133   {
134    .cmd = "ETRACE",
135 <  .args_max = MAXPARA,
136 <  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
137 <  .handlers[CLIENT_HANDLER] = m_not_oper,
138 <  .handlers[SERVER_HANDLER] = mo_etrace,
139 <  .handlers[ENCAP_HANDLER] = m_ignore,
140 <  .handlers[OPER_HANDLER] = mo_etrace
135 >  .handlers[UNREGISTERED_HANDLER] = { .handler = m_unregistered },
136 >  .handlers[CLIENT_HANDLER] = { .handler = m_not_oper },
137 >  .handlers[SERVER_HANDLER] = { .handler = mo_etrace },
138 >  .handlers[ENCAP_HANDLER] = { .handler = m_ignore },
139 >  .handlers[OPER_HANDLER] = { .handler = mo_etrace }
140   };
141  
142   static void

Diff Legend

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