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

Comparing ircd-hybrid/trunk/src/conf_parser.y (file contents):
Revision 2012 by michael, Sun May 12 14:47:26 2013 UTC vs.
Revision 2038 by michael, Tue May 14 19:21:32 2013 UTC

# Line 335 | Line 335 | reset_block_state(void)
335   %token  T_UNXLINE
336   %token  T_GLOBOPS
337   %token  T_WALLOP
338 + %token  T_WALLOPS
339   %token  T_WEBIRC
340   %token  T_RESTART
341   %token  T_SERVICE
# Line 1261 | Line 1262 | oper_flags_item: KILL ':' REMOTE
1262   {
1263    if (conf_parser_ctx.pass == 2)
1264      block_state.port.value |= OPER_FLAG_GLOBOPS;
1265 + } | T_WALLOPS
1266 + {
1267 +  if (conf_parser_ctx.pass == 2)
1268 +    block_state.port.value |= OPER_FLAG_WALLOPS;
1269 + } | T_LOCOPS
1270 + {
1271 +  if (conf_parser_ctx.pass == 2)
1272 +    block_state.port.value |= OPER_FLAG_LOCOPS;
1273   } | REMOTEBAN
1274   {
1275    if (conf_parser_ctx.pass == 2)

Diff Legend

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