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 9897 by michael, Fri Jan 1 04:43:22 2021 UTC vs.
Revision 9898 by michael, Sun Jan 17 06:19:26 2021 UTC

# Line 170 | Line 170 | reset_block_state(void)
170   %token  DISABLE_REMOTE_COMMANDS
171   %token  DLINE_MIN_CIDR
172   %token  DLINE_MIN_CIDR6
173 %token  DOTS_IN_IDENT
173   %token  EMAIL
174   %token  ENABLE_EXTBANS
175   %token  ENCRYPTED
# Line 273 | Line 272 | reset_block_state(void)
272   %token  SERVERHIDE
273   %token  SERVERINFO
274   %token  SHORT_MOTD
275 + %token  SPECIALS_IN_IDENT
276   %token  SPOOF
277   %token  SQUIT
278   %token  STATS_E_DISABLED
# Line 2350 | Line 2350 | general_item:       general_away_count |
2350                      general_kill_chase_time_limit |
2351                      general_invisible_on_connect |
2352                      general_warn_no_connect_block |
2353 <                    general_dots_in_ident |
2353 >                    general_specials_in_ident |
2354                      general_stats_i_oper_only |
2355                      general_stats_k_oper_only |
2356                      general_stats_m_oper_only |
# Line 2549 | Line 2549 | general_no_oper_flood: NO_OPER_FLOOD '='
2549    ConfigGeneral.no_oper_flood = yylval.number;
2550   };
2551  
2552 < general_dots_in_ident: DOTS_IN_IDENT '=' NUMBER ';'
2552 > general_specials_in_ident: SPECIALS_IN_IDENT '=' NUMBER ';'
2553   {
2554 <  ConfigGeneral.dots_in_ident = $3;
2554 >  ConfigGeneral.specials_in_ident = $3;
2555   };
2556  
2557   general_max_targets: MAX_TARGETS '=' NUMBER ';'

Diff Legend

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