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

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

# Line 177 | Line 177 | ms_svsmode(struct Client *source_p, int
177   static struct Message svsmode_msgtab =
178   {
179    .cmd = "SVSMODE",
180 <  .args_min = 4,
181 <  .args_max = MAXPARA,
182 <  .handlers[UNREGISTERED_HANDLER] = m_ignore,
183 <  .handlers[CLIENT_HANDLER] = m_ignore,
184 <  .handlers[SERVER_HANDLER] = ms_svsmode,
185 <  .handlers[ENCAP_HANDLER] = m_ignore,
186 <  .handlers[OPER_HANDLER] = m_ignore
180 >  .handlers[UNREGISTERED_HANDLER] = { .handler = m_unregistered },
181 >  .handlers[CLIENT_HANDLER] = { .handler = m_ignore },
182 >  .handlers[SERVER_HANDLER] = { .handler = ms_svsmode, .args_min = 4 },
183 >  .handlers[ENCAP_HANDLER] = { .handler = m_ignore },
184 >  .handlers[OPER_HANDLER] = { .handler = m_ignore }
185   };
186  
187   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines