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

Comparing ircd-hybrid/branches/8.2.x/modules/m_away.c (file contents):
Revision 9372 by michael, Wed Jan 1 09:58:57 2020 UTC vs.
Revision 9373 by michael, Sat May 9 20:54:26 2020 UTC

# Line 115 | Line 115 | m_away(struct Client *source_p, int parc
115   static struct Message away_msgtab =
116   {
117    .cmd = "AWAY",
118 <  .args_max = MAXPARA,
119 <  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
120 <  .handlers[CLIENT_HANDLER] = m_away,
121 <  .handlers[SERVER_HANDLER] = m_away,
122 <  .handlers[ENCAP_HANDLER] = m_ignore,
123 <  .handlers[OPER_HANDLER] = m_away
118 >  .handlers[UNREGISTERED_HANDLER] = { .handler = m_unregistered },
119 >  .handlers[CLIENT_HANDLER] = { .handler = m_away },
120 >  .handlers[SERVER_HANDLER] = { .handler = m_away },
121 >  .handlers[ENCAP_HANDLER] = { .handler = m_ignore },
122 >  .handlers[OPER_HANDLER] = { .handler = m_away }
123   };
124  
125   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines