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 5863 by michael, Tue Apr 28 12:23:14 2015 UTC vs.
Revision 5880 by michael, Sun May 3 16:01:42 2015 UTC

# Line 334 | Line 334 | m_who(struct Client *source_p, int parc,
334  
335   static struct Message who_msgtab =
336   {
337 <  "WHO", NULL, 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
338 <  { m_unregistered, m_who, m_ignore, m_ignore, m_who, m_ignore }
337 >  .cmd = "WHO",
338 >  .args_min = 2,
339 >  .args_max = MAXPARA,
340 >  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
341 >  .handlers[CLIENT_HANDLER] = m_who,
342 >  .handlers[SERVER_HANDLER] = m_ignore,
343 >  .handlers[ENCAP_HANDLER] = m_ignore,
344 >  .handlers[OPER_HANDLER] = m_who
345   };
346  
347   static void

Diff Legend

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