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

Comparing ircd-hybrid/branches/8.2.x/modules/m_who.c (file contents):
Revision 9276 by michael, Wed Feb 12 19:14:18 2020 UTC vs.
Revision 9373 by michael, Sat May 9 20:54:26 2020 UTC

# Line 365 | Line 365 | m_who(struct Client *source_p, int parc,
365   static struct Message who_msgtab =
366   {
367    .cmd = "WHO",
368 <  .args_max = MAXPARA,
369 <  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
370 <  .handlers[CLIENT_HANDLER] = m_who,
371 <  .handlers[SERVER_HANDLER] = m_ignore,
372 <  .handlers[ENCAP_HANDLER] = m_ignore,
373 <  .handlers[OPER_HANDLER] = m_who
368 >  .handlers[UNREGISTERED_HANDLER] = { .handler = m_unregistered },
369 >  .handlers[CLIENT_HANDLER] = { .handler = m_who },
370 >  .handlers[SERVER_HANDLER] = { .handler = m_ignore },
371 >  .handlers[ENCAP_HANDLER] = { .handler = m_ignore },
372 >  .handlers[OPER_HANDLER] = { .handler = m_who }
373   };
374  
375   static void

Diff Legend

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