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-8/src/ircd_parser.y (file contents):
Revision 1176 by michael, Sun Aug 14 11:24:24 2011 UTC vs.
Revision 1216 by michael, Tue Sep 13 18:22:31 2011 UTC

# Line 360 | Line 360 | unhook_hub_leaf_confs(void)
360   %token  T_UNAUTH
361   %token  T_UNRESV
362   %token  T_UNXLINE
363 + %token  T_GLOBOPS
364   %token  T_WALLOP
365   %token  T_SERVICE
366   %token  T_SERVICES_NAME
# Line 1334 | Line 1335 | oper_flags_item_atom: GLOBAL_KILL
1335      if (not_atom) yy_aconf->port &= ~OPER_FLAG_OPERWALL;
1336      else yy_aconf->port |= OPER_FLAG_OPERWALL;
1337    }
1338 + } | T_GLOBOPS
1339 + {
1340 +  if (conf_parser_ctx.pass == 2)
1341 +  {
1342 +    if (not_atom) yy_aconf->port &= ~OPER_FLAG_GLOBOPS;
1343 +    else yy_aconf->port |= OPER_FLAG_GLOBOPS;
1344 +  }
1345   } | OPER_SPY_T
1346   {
1347    if (conf_parser_ctx.pass == 2)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines